*{font-family: Arial, Helvetica, sans-serif;margin: 0;padding: 0;box-sizing: border-box;}
:root{
    --fondo_1: #FFFFFF;
    --fondo_2: #f7f9f9;
    --fondo_3: #f4f6f7;
    --texto_1: #273746;
    --texto_2: #566573;
    --texto_3: #808b96;
    --borde_1: rgba(0,0,0,0.1);
    --borde_2: rgba(0,0,0,0.2);
    --azul_1: #457edd;
    --azul_2: #6392e4;
    --azul_3: #80a7e9;
    --rojo_1: #D90429;
}
body{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin: auto;
    background: var(--fondo_2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.login{
    width: 100%;
    max-width: 400px;
    background: var(--fondo_1);
    border-radius: 10px;
    border: 1px solid var(--borde_1);
    overflow: hidden;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.texto_1{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: var(--rojo_1);
}
.texto_2{
    font-size: 14px;
}
.pregunta{
    width: calc(100% - 40px);
    height: 40px;
    border: 2px solid var(--rojo_1);
    position: relative;
    border-radius: 5px;
}
.ojito{
    z-index: 1;
    width: 26px;
    height: 26px;
    margin: auto;
    border-radius: 100%;
    position: absolute;
    inset-block: 0;
    right: 8px;
    background: var(--fondo_1);
    color: var(--rojo_1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ojito:hover{background: var(--rojo_1);color: white;}
.label{
    color: var(--rojo_1);
    z-index: 1;
    background: var(--fondo_1);
    left: 5px;
    top: -7px;
}
.input{
    width: 100%;
    height: 100%;
    inset: 0;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 5px;
}
.label, .input{
    margin: auto;
    position: absolute;
    font-size: 12px;
}
.acceder{
    width: calc(100% - 40px);
    height: 30px;
    border-radius: 5px;
    background: var(--rojo_1);
    color: white;
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}