/*
    Register Page Overrides — Presenta Premium Redesign
    Author: lehan
*/

/* Register card can be slightly wider */
.auth-card.register-card {
    max-width: 460px;
}

/* ---- Password Strength Indicator ---- */
.password-strength {
    margin-top: 8px;
    display: flex;
    gap: 4px;
    height: 3px;
}

.password-strength .strength-bar {
    flex: 1;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

.password-strength .strength-bar.active-weak {
    background: #ef4444;
}

.password-strength .strength-bar.active-medium {
    background: #f59e0b;
}

.password-strength .strength-bar.active-strong {
    background: #22c55e;
}

/* ---- Terms Checkbox ---- */
.terms-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    margin-top: 4px;
}

.terms-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary-container);
    cursor: pointer;
    flex-shrink: 0;
}

.terms-group label {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--text-muted) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.5;
}

.terms-group label a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.terms-group label a:hover {
    text-decoration: underline;
}