.login-section {
    background: #0a0a0a;
    color: #ffffff;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.login-container {
    max-width: 500px;
    width: 100%;
}

.login-card {
    background: #1f1f1f;
    border: 1px solid #374151;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.4s ease-out;
}

.login-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.login-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.login-description {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Login Form */
.login-form {
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-label {
    display: block;
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #0a0a0a;
    border: 2px solid #374151;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.login-input:focus {
    outline: none;
    border-color: #667eea;
}

.login-input::placeholder {
    color: #6b7280;
}

/* Buttons */
.login-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.login-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.login-btn-discord {
    background: #5865F2;
    color: #ffffff;
}

.login-btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

/* Divider */
.login-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #374151;
}

.divider-text {
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0 1rem;
}

/* Links */
.login-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.login-link {
    color: #667eea;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .login-card {
        padding: 2rem;
    }

    .login-title {
        font-size: 1.75rem;
    }

    .login-description {
        font-size: 0.95rem;
    }
}