html {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #055C9F;
}
body {
	height: 100vh;
	max-width: 1920px;
	width: 100%;
	font-family: 'Montserrat', 'Arial', sans-serif;
	display: flex;
	flex-direction: column;
}

.barra_superior {
	background-color: #055C9F;
	height: 76px;
	width: 100%;
	display: flex;
	align-items: center;
	padding-left: 5%;
	padding-right: 5%;
}

.barra_superior img {
	width: 132px;
	height: 60px;
}

.espacio_principal {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 10%;
	padding-right: 10%;
	background-image: url('/images/login/fondo.png');
	background-position: center 35%;
    background-size: cover; 
    background-repeat: no-repeat;
	flex-grow: 1;
}

.bloque-formulario {
	border-radius: 15px;
	background-color: #F9F9F9;
	padding: 54px;
}

.texto_superior{
	color:white;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.50);
	font-size: 40px;
	font-style: normal;
	font-weight: 800;
	line-height: 91.9%;
}

.texto_inferior{
	color:white;
	font-weight:900;
	line-height:0.5;
	text-shadow: -1px 0px 7px black;
}

.titulo {
	color:#055C9F;
	font-weight: 800;
	font-size:35px;
}

.sub_titulo {
	color:#767C87;
	font-size: 13px;
	font-weight: 400;
	text-align: center;
}

.formulario_login label {
	color: #000;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 111.9%;
	margin-bottom: 3px;
}

.formulario_login input {
	height: 50px;
	padding: 0px 20px;
	border-radius: 15px;
	font-size: 13px;
	border: 1px solid #E2E8F0;
	margin-bottom: 28px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
    margin-right: 10px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 17px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #055c9f;
}

input:checked + .slider:before {
    transform: translateX(13px);
}

.caption {
	font-size: 13px;
	font-weight: 500;
    vertical-align: middle;
}

.boton_login {
	margin-top: 25px;
	width: 100%;
	border-radius: 12px;
	background: #055C9F;
	color: white;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: 111.9%;
	padding-top: 12.5px;
	padding-bottom: 12.5px;
	border: none;
}

@media screen and (max-width: 1000px) {
	.espacio_principal {
		justify-content: center;
	}
	
    .texto_superior {
        display: none;
    }
}

@media screen and (max-width: 500px) {
	.espacio_principal {
		padding: 0;
	}
}

@media screen and (max-width: 365px) {
	.bloque-formulario {
		height: 100vh;
		border-radius: 0;
	}
}


