:root{
	--azul: #6a86b4;
	--azulOscuro: #287AFF;
	--azulGris: #292BB8;
	--blanco: #fff;
	--fuente: 'Quicksand', sans-serif;
}

html{
	box-sizing: border-box;
}

*,*::after, *::before{
	box-sizing: inherit;
}

body{
	font-family: var(--fuente);
	background: url('../../image/fondo2.png');
	display: flex;
	align-items: center;
	height: 100vh;
}

.contenedor{
	margin: 0 auto;
	max-width: 900px;
	width: 95%;
}

.imagen-formulario{
	background-image: url('../../image/klipartz.com2.png');
	background-position: center center;
	background-size: cover;
	height: 200px;
	flex: 0 0 calc(45%);
	position: relative;
}

.imagen-formulario::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to right,rgba(60, 179, 113, .5), rgba(19, 64, 116, .5));
}

@media(min-width: 768px){
	.imagen-formulario{
		height: auto;
		background-position: right;
	}
}

@media(min-width: 1200px){
	.imagen-formulario{
		background-position: center;
	}
}

@media(min-width: 768px){
	.contenedor-formulario{
		display: flex;
	}
}

.formulario{
	padding: 50px;
	background-image: url('../../image/fondo.png');
	flex: 0 0 calc(55%);
}

.texto-formulario h2, .input label, .password-olvidada a, .texto-formulario p{
	color: black;
}

.texto-formulario h2{
	font-size: 25px;
	text-align: center;
}

.texto-formulario p{
	font-size: 18px;
	text-align: center;
}

.password-olvidada a{
	display: inline-block;
	margin-top: 20px;
	font-size: 18px;
}

