/* Estilos compartidos de las pantallas de cuenta (acceso, registro, recuperar, restablecer, verificada)
   Color institucional: verde #006C52 */

body { font-family: 'Montserrat', Arial, sans-serif; background: #f6f6f8; }

.acceso-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 18px; }
.acceso-card {
    width: 100%; max-width: 440px; background: #fff; border-radius: 22px;
    box-shadow: 0 10px 34px rgba(0,0,0,.10); padding: 34px 28px 26px 28px;
}
.acceso-logo { display: block; margin: 0 auto 10px auto; width: 92px; }
.acceso-titulo { text-align: center; font-weight: 800; font-size: 1.45rem; margin-bottom: 2px; color: #222; }
.acceso-sub { text-align: center; color: #777; font-size: .98rem; margin-bottom: 24px; }

.btn-rrinos {
    background: #006C52; border: none; color: #fff; font-weight: 700;
    padding: 15px; font-size: 1.12rem; border-radius: 14px; width: 100%;
}
.btn-rrinos:hover, .btn-rrinos:focus { background: #00563f; color: #fff; }
.btn-rrinos:disabled { background: #9fc9bc; }

.btn-secundario {
    background: #fff; border: 2px solid #ddd; color: #444; font-weight: 600;
    padding: 13px; font-size: 1.02rem; border-radius: 14px; width: 100%;
}
.btn-secundario:hover { border-color: #bbb; background: #fafafa; color: #333; }

.btn-opcion {
    display: flex; align-items: center; gap: 14px; width: 100%;
    background: #fff; border: 2px solid #e6e6e6; border-radius: 16px;
    padding: 16px 18px; margin-bottom: 12px; text-align: left; font-weight: 600;
    color: #333; font-size: 1.02rem; transition: all .12s;
}
.btn-opcion:hover { border-color: #006C52; background: #f4faf7; }
.btn-opcion .material-icons { color: #006C52; font-size: 30px; }
.btn-opcion small { display: block; font-weight: 500; color: #888; font-size: .84rem; }

.input-cuenta {
    font-size: 1.08rem; padding: 13px 16px; border-radius: 14px; border: 2px solid #ddd;
    width: 100%; font-weight: 500;
}
.input-cuenta:focus { outline: none; border-color: #006C52; box-shadow: 0 0 0 4px rgba(0,108,82,.12); }

/* doble captura del celular */
.input-cuenta.input-bien { border-color: #2e9e5b; }
.input-cuenta.input-mal { border-color: #c62828; }
.hint-confirma { font-size: .88rem; font-weight: 600; min-height: 20px; margin-top: 4px; }
.hint-confirma.bien { color: #2e9e5b; }
.hint-confirma.mal { color: #c62828; }

.input-grande {
    font-size: 1.5rem; padding: 13px 16px; border-radius: 14px; border: 2px solid #ddd;
    width: 100%; text-align: center; letter-spacing: 2px; font-weight: 600;
}
.input-grande:focus { outline: none; border-color: #006C52; box-shadow: 0 0 0 4px rgba(0,108,82,.12); }
.input-codigo { letter-spacing: 14px; font-size: 2rem; font-family: Consolas, monospace; }

.link-simple { color: #006C52; font-weight: 600; text-decoration: none; cursor: pointer; }
.link-simple:hover { text-decoration: underline; color: #00563f; }

.divisor { display: flex; align-items: center; gap: 12px; color: #aaa; margin: 18px 0; font-size: .9rem; }
.divisor::before, .divisor::after { content: ""; flex: 1; height: 1px; background: #e5e5e5; }

.paso { display: none; }
.paso.activo { display: block; animation: aparecer .18s ease-out; }
@keyframes aparecer { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: none; } }

.aviso-tarjeta {
    background: #e8f7ee; border: 1.5px solid #9ed9b5; color: #1e7c43;
    border-radius: 14px; padding: 13px 15px; font-weight: 600; font-size: .97rem; margin-bottom: 14px;
}

.error-msg { color: #c62828; font-weight: 600; font-size: .95rem; text-align: center; margin-top: 10px; min-height: 22px; }
.exito-icono { font-size: 74px; color: #2e9e5b; }
.fallo-icono { font-size: 74px; color: #c62828; }

.check-cuenta { width: 1.35em; height: 1.35em; margin-top: .15em; flex-shrink: 0; }
.check-cuenta:checked { background-color: #006C52; border-color: #006C52; }
