/* 
==============================================
LOGIN SECTION STYLES
Uses global.css for all form styling
==============================================
*/

/* Section display and positioning */
#login-section {
    position: relative;
    z-index: 2;
    display: none;
    padding-top:100px;
}

#login-section.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Simple container */
.login-container {
    min-height: calc(100vh - 80px);
    padding: 1rem;
}

.login-form-wrapper {
    width: 100%;
    max-width: 400px;
}

/* Title */
.login-title {
    font-family: "Open Sans", sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #222222;
    margin-bottom: 2rem;
}

/* Login Links */
.login-links {
    margin-top: 1.5rem;
}

.password-recovery-link {
    color: #667eea;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.password-recovery-link:hover {
    color: #5568d3;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .login-container {
        padding: 1rem;
    }
    
    .login-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .login-title {
        font-size: 24px;
    }
}
