/* Public Authentication Pages - Minimal Overrides */
/* 
 * This file contains only auth-specific styling.
 * All main styling comes from the public global CSS design system.
 */

/* Auth-specific section styling */
.auth-section {
    min-height: calc(100vh - var(--header-height, 80px) - 100px);
    display: flex;
    align-items: center;
    background: var(--rev-bg-secondary);
    padding: 70px 0;
}

/* Auth card specific styling */
.auth-card {
    background: var(--rev-card-bg);
    box-shadow: var(--shadow-card);
    width: 100%;
    padding: 2.5rem !important;
    border-radius: var(--radius-2xl);
}

/* Form layout and spacing */
.auth-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

/* Password input field with icon */
.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.password-toggle:hover {
    color: var(--text-primary);
}

/* Input with icon padding adjustment */
.password-field input {
    padding-right: 40px;
}

/* Form options layout */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
}

/* Checkbox styling */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-container span {
    line-height: 1.4;
    color: var(--text-secondary);
}

/* Auth page titles */
.auth-title {
    color: var(--text-primary);
    margin-bottom: 0.7rem;
    text-align: center;
}

.auth-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

/* Bottom links */
.auth-links {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
}

.auth-links a {
    color: var(--primary);
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .auth-section {
        min-height: calc(100vh - var(--header-height, 80px) - 150px);
        padding: 40px 20px;
    }
    
    .auth-card {
        margin: 0 20px;
    }
}

@media (max-width: 576px) {
    .auth-card {
        padding: 2rem !important;
    }
    
    .auth-title {
        font-size: 1.75rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
} 