/* Olvido su contrasena */
.forgot-pw.forgot-password-page {
    position: relative;
    z-index: 20;
    margin-top: 80px;
    padding: 70px 0;
    pointer-events: auto;
}

.forgot-password-section {
    position: relative;
    z-index: 5;
    text-align: center;
}

.forgot-password-section p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.forgot-password-form {
    position: relative;
    z-index: 100;
    max-width: 760px;
    margin: 24px auto 0;
    pointer-events: auto;
}

.forgot-password-input-wrap {
    position: relative;
    z-index: 20;
}

.forgot-password-email {
    position: relative;
    z-index: 30;
    pointer-events: auto;
    width: 100%;
    background: #fff;
}

.forgot-password-email[readonly] {
    color: #6b7280;
    background: #f8fafc;
    cursor: default;
}

.reset-password-label {
    position: relative;
    z-index: 20;
    display: block;
    margin-bottom: 8px;
    text-align: left;
}

.reset-password-input-wrap {
    margin-bottom: 16px;
}

.reset-password-input {
    position: relative;
    z-index: 30;
    pointer-events: auto;
    width: 100%;
    padding-right: 48px;
    background: #fff;
}

.reset-password-toggle {
    position: absolute;
    z-index: 40;
    top: 50%;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #777;
    cursor: pointer;
    pointer-events: auto;
    transform: translateY(-50%);
}

.reset-password-toggle:hover {
    color: #f91942;
    background: #f6f7f9;
}

.reset-password-submit {
    min-width: 240px;
}

.forgot-password-submit-wrap {
    position: relative;
    z-index: 120;
    margin-top: 18px;
    text-align: center;
    pointer-events: auto;
}

.forgot-password-submit {
    position: relative;
    z-index: 130;
    pointer-events: auto !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 120px;
    min-height: 44px;
    margin: 0;
}

.forgot-password-submit:disabled {
    cursor: wait;
    opacity: 0.75;
    pointer-events: auto !important;
}

.forgot-password-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: forgot-password-spin 0.8s linear infinite;
}

.forgot-password-submit.is-loading .forgot-password-loader {
    display: inline-block;
}

.forgot-password-spinner {
    display: none;
    margin: 8px auto 0;
    width: fit-content;
}

.forgot-password-message {
    max-width: 760px;
    margin: 0 auto 18px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.45;
    padding: 12px 14px;
    text-align: left;
}

.forgot-password-message.error {
    color: #8a122b;
    background: #fff0f3;
    border: 1px solid #ffc9d3;
}

.forgot-password-message.success {
    color: #0f5a3f;
    background: #ecfdf5;
    border: 1px solid #b8efd5;
}

@keyframes forgot-password-spin {
    to {
        transform: rotate(360deg);
    }
}

@media(max-width:1239px) {
    .forgot-pw.forgot-password-page {
        margin-top: 150px;
    }
}

@media(max-width:991px) {
    .forgot-pw.forgot-password-page {
        margin-top: 0;
        padding-left: 15px;
        padding-right: 15px;
    }

}
