/* Reset Password page uses login.css base styles */
/* Any page-specific overrides can go here */

/* Password-requirements hint: sits directly under the New Password input and is locked to the
   same 40% centered column as the inputs so it never extends past the box on either side. */
.pw-requirements-hint {
    display: flex;
    gap: 6px;
    width: 40%;
    margin: 2px auto 14px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.45;
    text-align: left;
}

.pw-requirements-hint i {
    margin-top: 2px;
    color: #9ca3af;
}

@media (max-width: 650px) {
    .pw-requirements-hint {
        width: 100%;
    }
}
