:root {
    color-scheme: light;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    color: #102235;
    background: #f1f4f7;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 17% 12%, rgba(205, 17, 34, .08), transparent 31%),
        linear-gradient(145deg, #fafbfc 0%, #e9eef3 100%);
}

button,
input {
    font: inherit;
}

.acceso {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.acceso-tarjeta {
    width: min(390px, 100%);
    padding: 34px 34px 32px;
    border: 1px solid rgba(202, 211, 220, .88);
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow:
        0 28px 70px rgba(16, 34, 53, .15),
        0 2px 8px rgba(16, 34, 53, .05);
    backdrop-filter: blur(12px);
}

.acceso-icono {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 28px;
    border-radius: 15px;
    background: #cf1124;
    box-shadow: 0 13px 28px rgba(207, 17, 36, .24);
}

.acceso-icono svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.campo + .campo {
    margin-top: 18px;
}

label {
    display: block;
    margin: 0 0 7px;
    color: #182b3d;
    font-size: 13px;
    font-weight: 720;
}

input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #c9d3dc;
    border-radius: 10px;
    background: #fff;
    color: #102235;
    outline: none;
    transition:
        border-color .16s ease,
        box-shadow .16s ease,
        background .16s ease;
}

input:hover {
    border-color: #aebbc7;
}

input:focus {
    border-color: #cf1124;
    box-shadow: 0 0 0 4px rgba(207, 17, 36, .10);
}

.campo-clave {
    position: relative;
}

.campo-clave input {
    padding-right: 50px;
}

.boton-ojo {
    position: absolute;
    top: 50%;
    right: 7px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #607284;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
    transform: translateY(-50%);
}

.boton-ojo:hover,
.boton-ojo:focus-visible {
    background: #edf1f4;
    color: #172d40;
    outline: none;
}

.boton-ojo svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ojo-ocultar {
    display: none;
}

.boton-ojo.visible .ojo-ver {
    display: none;
}

.boton-ojo.visible .ojo-ocultar {
    display: block;
}

.mensaje {
    min-height: 20px;
    margin: 13px 0 3px;
    color: #c20f21;
    font-size: 12.5px;
    font-weight: 650;
    line-height: 1.35;
    text-align: center;
}

.mensaje:empty {
    margin-top: 6px;
    min-height: 7px;
}

.boton-entrar {
    width: 100%;
    height: 49px;
    margin-top: 8px;
    border: 0;
    border-radius: 10px;
    background: #cf1124;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(207, 17, 36, .20);
    transition:
        transform .14s ease,
        background .14s ease,
        box-shadow .14s ease;
}

.boton-entrar:hover {
    background: #b80f20;
    box-shadow: 0 14px 30px rgba(184, 15, 32, .24);
    transform: translateY(-1px);
}

.boton-entrar:active {
    transform: translateY(0);
}

.boton-entrar:disabled {
    cursor: wait;
    opacity: .68;
    transform: none;
}

@media (max-width: 520px) {
    .acceso {
        padding: 16px;
    }

    .acceso-tarjeta {
        padding: 30px 22px 27px;
        border-radius: 15px;
    }
}


/* FINANCIERO_ICON_V82_START */
.acceso-icono {
    width: 58px;
    height: 58px;
    padding: 7px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    background: #090a0d;
    box-shadow: 0 14px 30px rgba(17, 18, 23, .24);
}
.acceso-icono img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* FINANCIERO_ICON_V82_END */
