@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

:root {
    --bg: #f7f8fa;
    --card-bg: #ffffff;
    --muted: #6b7280;
    --border: #e6e9ee;
    --accent-blue: #1E6FFF;
    --accent-green: #1FCC6B;
    --header-height: 72px;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --white: #fff;
    --success-clr: #3cb878;
    --success-hvr: #059249;
    --error-clr: #fd5664;
    --error-hvr: #ff0016;
    --cancel-clr: #d4d9e5;
}

html,
body {
    height: 100%;
    margin: 0;
    background: var(--bg);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.page_recuperacion {
    background: #f4f6f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.sub-titulo{
    font-size: 14px;
    color: #a0a2a5;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
}

.card {
    background: #fff;
    padding: 30px 0px;
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
}

.acciones-recuperar {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    align-items: center;
}

/* BOTÓN PRINCIPAL */
.btn-Recuperar {
    flex: 2;                     /* 🔥 domina el espacio */
    font-size: 18px;
    font-weight: 600;
    border-radius: 14px;
    padding: 7px;
    background: #000000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background .25s ease, transform .15s ease, box-shadow .15s ease;
}

.btn-Recuperar:hover {
    background: #575757;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(22, 163, 74, 0.35);
}

.btn-Recuperar:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(22, 163, 74, 0.25);
}

/* BOTÓN SECUNDARIO */
.btn-Cancelar {
    flex: 1;                     /* 👈 menos importancia */
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border-radius: 14px;
    padding: 10px;
    background: #f1f5f9;
    color: #334155;
    text-decoration: none;
    border: 1px solid #cbd5e1;
    transition: background .2s ease, color .2s ease;
}

.btn-Cancelar:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.form-reg{
    padding: 0 20px;
}

@media (max-width: 576px) {
    .card{
        margin: 0 13px;
    }
}

.error {
    color: #dc2626;
    font-size: 13px;
}