#caja-formulario-login{
    height: calc(100vh - 200px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#caja-login{
    width: fit-content;
    height: fit-content;
    /* display: flex; */
    justify-content: center;
}

.caja-input-login{
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.input-login-texto{
    text-align: center;
    width: 250px;
    font-size: 22px;
    color: black;
    border: none;
    outline: none;
    border-bottom: 1px solid black;
    font-weight: 400;
}::placeholder{
    color: black;
    font-weight: 100;
}

#enviar-login{
    text-align: center;
    font-size: 22px;
    margin-top: 30px;
    border: 1px solid black;
    background-color: #f2d6c3;
    border-radius: 50px;
    padding: 5px 15px;
}

/* DIV ERRORES AL INICIAR SESION */
.error-login{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 15px;
    color: rgb(255, 255, 255);
    background-color: rgb(255, 46, 46);
    text-decoration: underline;
    margin-bottom: 20px;
    border-radius: 50px;
    text-align: center;
}