body{
	font-family: "Montserrat", "Arial", "sans-serif";
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	justify-content: center;
	align-items: center;
	display: flex;
	background-image: url("/static/img/fondo_login2.jpeg");
}


.login_box {
	min-width: 450px;
	background-color: rgba(255, 255, 255, 0.925);
	border: 3px solid #8b8b8b;
	border-radius: 5%;
}

input {
	border: none;
	border-bottom: 1px solid;
	background: transparent;
	outline: none;
	text-align: center;
	font-family: "Montserrat", "Arial", "sans-serif";
	width: 100%;
}

.container {
	display: grid;
	width: 90%;
	margin: auto;
	grid-template-columns: 30% 70%;
}

.item_mensaje {
	grid-column: 1/3;
}

.item_iconos {
	grid-column: 1/3;
	text-align: center;
}

.item_titulo {
	grid-column: 1/3;
	text-align: center;
}

.item_etiqueta {
	margin-bottom: 20px;
	text-align: right;
	min-width: 100px;
}

.item_input {
	margin: 0% auto;
	width: 80%;
}

.item_olvido {
	grid-column: 1/3;
	margin-bottom: 5%;
	font-size: 12px;
}

.item_boton {
	grid-column: 1/3;
}

.item_captcha {
	grid-column: 1/3;
	text-align: center;
	margin-top: 20px;
}

.botones_login {
	display:block;
	margin: 5px auto;
	min-width: 45px;
	height: 35px;
	width: 50%;
	transition-duration: 0.4s;
	border-radius: 5px;
	padding: 4px 8px;
	background-color: 		rgba(13,110,253);
	color:	rgb(255, 255, 255);
	border-color: 	rgba(13,110,253);
	white-space: nowrap;
}

.botones_login:hover {
	background-color:	rgb(12, 90, 207);
	color: white;
}



/* CAPTCHA */

.wrapper {
	padding: 100px;
}

#g-recaptcha-response {
	display: block !important;
	position: absolute;
	margin: -78px 0 0 0 !important;
	width: 302px !important;
	height: 76px !important;
	z-index: -999999;
	opacity: 0;
}

/* ERRORES */

.alert{
	margin-top: 1rem;
	grid-column: 1/3;
	padding: 0.3rem 1rem;
	position: relative;
	border: 1px solid transparent;
	border-radius: 0.25rem;
}

.alert-danger {
	color: #842029;
	background-color: #f8d7da;
	border-color: #f5c2c7;
}

@media only screen and (max-device-width:900px) {

	body {
		font-size: 2.7em;
	}

	.container {
		grid-row-gap: 10px;
	}

	input {
		font-size: 1.2em;
	}

	.g-recaptcha {
		transform: scale(1.5);
	}


	.botones_login {
		height: 65px;
		width: 80%;
		font-size: 1em;
	}

	.imagen {
		width: 450px;
		height: auto;
	}

	.item_etiqueta, .item_input{
		grid-column: 1/3;
		text-align: center;
		margin: auto;
	}

	.item_etiqueta {
		margin: 0px;
	}

	.item_olvido {
		margin-bottom: 5%;
		font-size: 0.7em;
	}

	.item_input {
		margin-bottom: 40px;
	}

}