.password-policy-inline-row {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.password-policy-inline-row .form-control {
    flex: 1 1 auto;
    min-width: 0;
}

.password-hint-trigger {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #8ca0b3;
    background: #f7f9fc;
    color: #364c63;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    padding: 0;
    cursor: pointer;
    flex: 0 0 28px;
}

.password-hint-bubble {
    display: none;
    position: absolute;
    top: 34px;
    left: 0;
    width: 320px;
    max-width: 90vw;
    background: #ffffff;
    border: 1px solid #d5dce5;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(11, 31, 53, 0.18);
    padding: 10px 12px;
    font-size: 12px;
    color: #2f4254;
    z-index: 20;
}

.password-policy-inline-row.is-open .password-hint-bubble {
    display: block;
}

.password-strength-status {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
}

.password-strength-none {
    color: #c9302c;
}

.password-strength-weak {
    color: #f0ad4e;
}

.password-strength-good {
    color: #76c761;
}

.password-strength-very-good {
    color: #2f8f2f;
}
