.logo a {
    text-decoration: none;
}

/* Authentication Pages Styling */
.auth-section {
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    animation: containerAppear 1s forwards;
}

.auth-card {
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
}

.auth-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.auth-subtitle {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    color: #f8f9fa;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b0b0;
}

.input-with-icon input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(18, 18, 18, 0.8);
    color: #f8f9fa;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-with-icon input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.3);
}

.input-with-icon input::placeholder {
    color: #666;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #3498db;
}

.remember-me a {
    text-decoration: none;
}

.forgot-password {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #2980b9;
    text-decoration: underline;
}

.auth-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.4);
}

.auth-btn:hover {
    background: linear-gradient(45deg, #2980b9, #3498db);
    box-shadow: 0 7px 20px rgba(41, 128, 185, 0.6);
    transform: translateY(-2px);
}

.auth-btn:active {
    transform: translateY(0);
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 70px);
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background-color: rgba(30, 30, 30, 0.8);
    padding: 0 15px;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    gap: 15px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(18, 18, 18, 0.8);
    color: #f8f9fa;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.social-btn.google:hover {
    background-color: rgba(219, 68, 55, 0.2);
    border-color: rgba(219, 68, 55, 0.3);
}

.social-btn.discord:hover {
    background-color: rgba(114, 137, 218, 0.2);
    border-color: rgba(114, 137, 218, 0.3);
}

.social-btn i {
    font-size: 1.2rem;
}

.social-btn.google i {
    color: #db4437;
}

.social-btn.discord i {
    color: #7289da;
}

.auth-redirect, .remember-me a {
    text-align: center;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.auth-redirect a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-redirect a:hover, .remember-me a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Error message styling */
.error-message {
    background-color: rgba(231, 76, 60, 0.2);
    border-left: 3px solid #e74c3c;
    color: #e74c3c;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: none;
}

.success-message {
    background-color: rgba(46, 204, 113, 0.2);
    border-left: 3px solid #2ecc71;
    color: #2ecc71;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: none;
}

/* Responsive design */
@media (max-width: 576px) {
    .auth-card {
        padding: 30px 20px;
    }
    
    .social-login {
        flex-direction: column;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}