:root {
    --ancho: calc(min(80vw, 380px));
}
.login_contenedor {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 120px;
    background: no-repeat center / cover url("../images/default_bg-wkYvf4u.png");
}
.login_contenedor .logo {
    max-width: calc(min(80vw, 300px));
    margin-bottom: 20px;
}
.login_contenedor .error, form li {
    color: #f00;
    margin-top: 10px;
    font-size: 14px;
}
form ul {
    margin: 0;
    padding: 0;
}
form li {
    list-style: none;
}
.login_contenedor .idiomas {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: var(--ancho);
    margin-bottom: 20px;
}
.login_contenedor .idiomas .botonIdioma {
    margin: 0 10px;
    font-size: 16px;
    font-weight: bold;
}
.login_contenedor .idiomas a.botonIdioma {
    color: #A70A2C;
    text-decoration: none;
}
.login_contenedor .cajaLogin {
    width: var(--ancho);
    background-color: #EAEAEA;
}
.login_contenedor .cajaLogin .cabecera {
    color: #fff;
    background-color: #A70A2C;
    font-size: 24px;
    padding: 15px 40px;
}
.login_contenedor .cajaLogin form {
    padding: 20px 40px;
}
.login_contenedor label {
    display: block;
    font-size: 16px;
    margin: 10px 0;
}
.login_contenedor input[type=email], .login_contenedor input[type=text] {
    border-radius: 3px;
    width: 100%;
    min-height: 50px;
    color: #1f1f1f;
    background-color: #fff;
    font-family: inherit;
    border: none;
    font-size: 15px;
    line-height: 1;
    margin: 0;
    padding: 0 16px;
    vertical-align: middle;
}
.login_contenedor input[type=email]:focus, .login_contenedor input[type=text]:focus {
    outline: 0;
}
.login_contenedor button[type=submit] {
	background-color: #A70A2C;
    border-style: none;
	border-radius: 5px;
    font-size: 15px;
    margin-top: 20px;
    padding: 15px 30px;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-self: center;
    line-height: 1;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    transition: all .4s ease;
    cursor: pointer;
}
.login_contenedor button[type=submit]:hover {
	background-color: #000;
}
