/* RR_REGISTER_PASSWORD_CLEAN_V1 */
body.rr-register-body {
    --rr-register-accent: var(--rr-auth-accent, #16a34a);
    --rr-register-soft: rgba(248, 250, 252, .96);
    --rr-register-shadow: rgba(15, 23, 42, .16);
}

.rr-password-input-wrap {
    position: relative;
}

.rr-password-input-wrap input {
    padding-right: 52px !important;
}

.rr-password-visibility {
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #d5deea;
    border-radius: 11px;
    background: #fff;
    color: #334155;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
}

.rr-password-visibility:hover,
.rr-password-visibility.is-visible {
    color: var(--rr-register-accent, #0f172a);
    border-color: var(--rr-register-accent, #0f172a);
    background: color-mix(in srgb, var(--rr-register-accent, #0f172a) 8%, #fff);
}

.rr-password-eye {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-1px);
}

.rr-register-password-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 12px;
    margin: 9px 0 18px;
    padding: 0;
    list-style: none;
}

.rr-register-password-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #64748b;
    font-size: 11.5px;
    line-height: 1.45;
}

.rr-register-password-checklist li span {
    flex: 0 0 auto;
    color: #94a3b8;
    font-weight: 900;
}

.rr-register-password-checklist li.is-valid,
.rr-register-password-match.is-valid {
    color: var(--rr-register-accent, #15803d);
}

.rr-register-password-checklist li.is-valid span {
    color: var(--rr-register-accent, #16a34a);
}

.rr-register-password-match {
    display: block;
    min-height: 18px;
    margin-top: 7px;
    color: #64748b;
    font-size: 11.5px;
    line-height: 1.45;
}

.rr-register-password-match.is-invalid {
    color: #b91c1c;
}

@media (max-width: 560px) {
    .rr-register-password-checklist {
        grid-template-columns: 1fr;
    }
}
