/* Auth Pages */
body.auth-body {
    background-color: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background-image: radial-gradient(circle at 10% 20%, var(--brand-50) 0%, var(--gray-100) 90%);
}

.auth-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.auth-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    padding: 32px;
    width: 100%;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.auth-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.auth-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.auth-form .form-group {
    margin-bottom: 16px;
}

.auth-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    font-size: 13px;
    pointer-events: none;
}

.auth-input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 13px;
    outline: none;
    transition: all 0.15s;
    background-color: var(--gray-50);
}

.auth-input:focus {
    border-color: var(--brand-600);
    background-color: white;
    box-shadow: 0 0 0 3px var(--overlay-brand-10);
}

.auth-btn {
    width: 100%;
    padding: 10px;
    background-color: var(--brand-600);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3);
}

.auth-btn:hover {
    background-color: var(--brand-700);
    transform: translateY(-1px);
    box-shadow: 0 6px 8px -1px rgba(79, 70, 229, 0.4);
}

.auth-btn:active {
    transform: translateY(0);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-secondary);
}

.auth-link {
    color: var(--brand-600);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s;
}

.auth-link:hover {
    color: var(--brand-700);
    text-decoration: underline;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 12px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-check-input {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.form-check-label {
    color: var(--text-secondary);
    cursor: pointer;
}

.password-requirements {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 6px;
    padding-left: 2px;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 4px 0 0 0;
}

.password-requirements li {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 1px;
}

.password-requirements li i {
    font-size: 9px;
}
