/**
 * AI Tools Directory — Register Page Specific Styles
 *
 * @package AI_Tools_Directory
 */

/* Required asterisk */
.auth-required {
    color: #ef4444;
    margin-left: 2px;
}

/* Field hint text */
.auth-hint {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}

/* ===================================
   Password Strength Indicator
   =================================== */
.pw-strength {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.pw-strength-bar {
    flex: 1;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.pw-strength-fill {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: width 0.3s, background 0.3s;
}

.pw-strength-fill.strength-weak {
    width: 33%;
    background: #ef4444;
}

.pw-strength-fill.strength-medium {
    width: 66%;
    background: #f59e0b;
}

.pw-strength-fill.strength-strong {
    width: 100%;
    background: #10b981;
}

.pw-strength-text {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    min-width: 50px;
}

/* Password match hint */
.pw-match-hint {
    min-height: 18px;
}

.pw-match-hint.match-ok {
    color: #10b981;
}

.pw-match-hint.match-err {
    color: #ef4444;
}
