/* -------------------------------------------------------
   FORMULARIO CAMBIO DE CONTRASEÑA
------------------------------------------------------- */
.rc-change-password-form, .rc-forgot-password-form, .rc-reset-password-form {
    margin: 20px;
}

/* -------------------------------------------------------
   BOTONES (estilo compartido)
------------------------------------------------------- */
.cf7-btn {
    font-size: 13px;
    font-weight: 700;
    color: #850065;
    background: #ffffff;
    padding: 10px 10px;
    margin-right: 8px;
    cursor: pointer;
    border: 2px solid #850065;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    line-height: 1;
    transition: background .15s ease, border-color .15s ease, transform .06s ease;
}

.cf7-btn:active {
    background: #b666a3;
    border-color: #b666a3;
}

.cf7-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(134, 0, 101, 0.12);
}

/* -------------------------------------------------------
   MENSAJES (éxito, error, aviso) Y NOTA INFORMATIVA
------------------------------------------------------- */
.cf7-rb-mensaje {
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.06);
    box-sizing: border-box;
}

/* Mensaje de éxito */
.cf7-rb-mensaje.rc-pw-success {
    background: #e6ffef;
    color: #0a6b2f;
    border-color: rgba(10,107,47,0.12);
}

/* Mensaje de error */
.cf7-rb-mensaje.rc-pw-error {
    background: #fff0f0;
    color: #8b1e1e;
    border-color: rgba(139,30,30,0.12);
}

/* Nota informativa (no error) */
.rc-pw-note {
    display: block;
    margin: 20px;
    padding: 12px 16px 16px 16px; /* más espacio abajo */
    margin-bottom: 1rem;
    font-weight: 700;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.06);
    box-sizing: border-box;
}

.rc-pw-note {
    background: #fffbe6;
    color: #8b6b1e;
    border-color: rgba(139,107,30,0.12);
}

/* -------------------------------------------------------
   RESPONSIVE
------------------------------------------------------- */
@media (max-width: 480px) {
    .cf7-btn {
        font-size: 14px;
        padding: 8px 12px;
        display: block;
        width: 100%;
        margin: 0 0 8px 0;
    }

    .cf7-rb-mensaje,
    .rc-pw-note {
        width: 100%;
        margin: 0 0 8px 0;
        padding: 8px 12px;
    }
}

/* Más espacio en pantallas grandes */
@media (min-width: 768px) {
    .cf7-rb-mensaje {
        margin-bottom: 1.5rem;
    }
}