/* PW Login Redirect v1.0.4 */
.pw-login-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    margin: 0 0 20px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
}
.pw-login-notice--error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}
.pw-login-notice--info {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    color: #1e40af;
}
.pw-login-notice__close {
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0 0 0 12px;
    color: inherit;
    opacity: 0.6;
}
.pw-login-notice__close:hover {
    opacity: 1;
}

/* Password Reset Form (v1.0.2) */
.pw-reset-wrap {
    max-width: 28rem;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border: 0.0625rem solid #dcdcde;
    border-radius: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.pw-reset-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 0.5rem;
}
.pw-reset-desc {
    font-size: 0.875rem;
    color: #50575e;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}
.pw-reset-field {
    margin-bottom: 1rem;
}
.pw-reset-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 0.375rem;
}
.pw-reset-field input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    border: 0.0625rem solid #8c8f94;
    border-radius: 0.25rem;
    line-height: 1.5;
    font-family: inherit;
    box-sizing: border-box;
}
.pw-reset-field input:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 0.0625rem #2271b1;
    outline: none;
}
.pw-reset-btn {
    display: block;
    width: 100%;
    padding: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    background: #2271b1;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    font-family: inherit;
}
.pw-reset-btn:hover {
    background: #135e96;
}
.pw-reset-btn:disabled {
    background: #a0a5aa;
    cursor: not-allowed;
}
.pw-reset-back {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
}
.pw-reset-back a {
    color: #2271b1;
    text-decoration: none;
}
.pw-reset-back a:hover {
    text-decoration: underline;
}
.pw-login-notice--success {
    background: #f0fdf4;
    border: 0.0625rem solid #86efac;
    color: #166534;
}

/* Show passwords inline checkbox (v1.0.4) */
.pw-reset-field--inline {
    margin-top: -0.25rem;
    margin-bottom: 1.25rem;
}
.pw-reset-show-label {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem !important;
    font-weight: 400 !important;
    color: #50575e !important;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0 !important;
}
.pw-reset-show-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}
