/**
 * Login Page Styles
 * Specific styles for the login page (uses auth.css for common styles)
 */

/* Login specific form container */
.login-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-container {
    max-width: 400px;
    width: 100%;
}

/* Login specific title spacing */
.login-form-container .form-title {
    margin-bottom: 8px;
}

/* Login subtitle */
.form-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #667085;
    margin: 0 0 32px 0;
    text-align: center;
}

/* Form label for login */
.form-label {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
    margin-bottom: 6px;
}

/* Forgot Password */
.forgot-password-wrapper {
    text-align: right;
    margin-top: 8px;
}

.forgot-password-link {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #108d52;
    text-decoration: none;
    transition: all 0.3s ease;
}

.forgot-password-link:hover {
    text-decoration: underline;
    color: #0d7a43;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 480px) {
    .form-subtitle {
        font-size: 13px;
    }
}

