@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        body {
            background-color: #0f0f11;
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            color: white;
                overflow-x: hidden;
        }

 
        /* navbar */

        :root {
            --bg-color: #0f0f11;
            --primary-color: #ff172e;
            --text-color: #ffffff;
            --hover-color: #ffe5e7;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            background-color: var(--bg-color);
            color: var(--text-color);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .logonav {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo i {
            color: var(--primary-color);
        }

        .logo-img {
            height: 65px;
            width: auto;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        .dropdown {
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .dropdown > a {
            padding: 0.5rem 0;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--bg-color);
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            border-radius: 0.5rem;
            padding: 1rem 0;
            z-index: 1;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .dropdown-content a {
            padding: 0.5rem 1.5rem;
            display: block;
        }
        
        .auth-btn {
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .auth-btn:hover {
            background-color: var(--hover-color);
            transform: translateY(-2px);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--bg-color);
                padding: 1rem 2rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .dropdown-content {
                position: static;
                box-shadow: none;
                border: none;
                padding: 0;
                margin-left: 1.5rem;
            }
        }
        
.login-container {
    background-color: #1a1a1d;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    padding: 40px;
    text-align: center;
    margin: 10% auto;
}

        
        .logo {
            margin-bottom: 30px;
        }
        
        .logo h1 {
            color: #ff172e;
            font-size: 30px;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .logo p {
          color: #8a8a8e;
            margin-top: 0;
        }
        
        .login-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .input-group {
            text-align: left;
        }
        
        .input-group label {
            display: block;
            margin-bottom: 8px;
            color: #e0e0e0;
            font-size: 14px;
            font-weight: 500;
        }
        
        .input-group input {
            width: 100%;
            padding: 14px;
            border-radius: 8px;
            border: none;
            background-color: #252529;
            color: white;
            font-size: 15px;
            box-sizing: border-box;
        }
        
        .input-group input:focus {
            outline: 2px solid #ff172e;
        }
        
        
        .forgot-password a {
            color: #ff172e;
            text-decoration: none;
        }
        
        .login-button {
            background-color: #ff172e;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .login-button:hover {
            background-color: #e0152a;
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 20px 0;
            color: #8a8a8e;
            font-size: 14px;
        }
        
        .divider::before, .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #252529;
        }
        
        .divider::before {
            margin-right: 10px;
        }
        
        .divider::after {
            margin-left: 10px;
        }
        
        .discord-login {
            background-color: #5865F2;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background-color 0.3s;
        }
        
        .discord-login:hover {
            background-color: #4752C4;
        }
        
        .signup-link {
            margin-top: 20px;
            font-size: 14px;
            color: #8a8a8e;
        }
        
        .signup-link a {
            color: #ff172e;
            text-decoration: none;
            font-weight: 500;
        }
        .login-error {
  background-color: #ff2020;
  color: white;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 14px;
}

        @media (max-width: 480px) {
  .login-container {
    padding: 20px;
    margin: 20px auto;
  }
}