/* Page-specific styles for Login Page */
.content-area {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    max-width: 500px;
    width: 100%;
    padding: 0 1rem;
}

.login-card {
    background: linear-gradient(145deg, #21243b, #1a1e32);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: cardFadeIn 0.8s ease-out;
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f3274c, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(243, 39, 76, 0.4);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.login-header h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #f3274c, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #aaa;
    font-size: 0.95rem;
}

.forgot-password {
    text-align: right;
}

.forgot-password a {
    color: #f3274c;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.register-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #aaa;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.register-link a {
    color: #f3274c;
    text-decoration: none;
    font-weight: 600;
}

.register-link a:hover {
    text-decoration: underline;
}

.social-login {
    margin-top: 2rem;
    text-align: center;
}

.social-login-text {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    position: relative;
}

.social-login-text::before,
.social-login-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.social-login-text::before {
    left: 0;
}

.social-login-text::after {
    right: 0;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-social {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    cursor: pointer;
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-social.google:hover {
    background: #db4437;
    border-color: #db4437;
}

.btn-social.facebook:hover {
    background: #4267B2;
    border-color: #4267B2;
}

.btn-social.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

@media (max-width: 768px) {
    .login-card {
    padding: 2rem 1.5rem;
    }
    
    .login-header h2 {
    font-size: 1.6rem;
    }
    
    .login-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .login-card {
    padding: 1.5rem 1.25rem;
    }
    
    .social-buttons {
    gap: 0.75rem;
    }
    
    .btn-social {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    }
}