*{
	margin: 0;
	padding: 0;
	box-sizing: border-box; /*para que cuando se coloquen bordes se hagan dentro del parametro del cuadro y 
	                          no se salga. */
}

body {

	/* font-family: 'Anton', sans-serif; */
	font-family: inherit;
	/*text-shadow: 2px 2px 2px black;*/
	color: #d7d350;
	background-image: url("/img/back-img.png");
	background-color: #cccccc;
	
}

.cont {

	width: 100%; 
	height: 450px;

}

.cabecera-ini {
	/*position: fixed;*/
	font-family: 'Prototype';
	margin-top: 10px;
	padding-top: 8px;
	width: 100%;
	height: 50px;
	background: black;
	font-size: 1.3em;
	color: #fff;
	
}

.icon-key {
	margin-right: 20px;
}

.btn {
	
	background-color: #4CAF50; /* Green */
	border: none;
	color: white;
	padding: 4px 16px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	width: 15%;
	height: 5%;
	font-size: 16px;
	margin: 4px 2px;
	-webkit-transition-duration: 0.2s; /* Safari */
	transition-duration: 0.2s;
	cursor: pointer;
	border-radius: 10px;
}

.btn-primary {
	background-color: white; 
	color: black; 
	border: 2px solid #4CAF50;
}

.btn-primary:hover {
  background-color: #4CAF50;
  color: white;
}

.box-login {
	
	width: 45%;
	/* height: auto; */
	margin: auto;
	padding-bottom: 3%;
	/* display: block; */
	margin-top: 8%;
	/*background: rgba(255, 255, 45, 0.2);*/
	background: rgba(66, 197, 110, 0.2);
	border-radius: 5px;
	border: none;
	border: solid 2px rgba(255, 255, 255, 0.325);
	
}

.Tit-ini-secion {
	
	font-family: 'Prototype';
	margin-top: 20px;
	text-align: center;
	font-size: 25px;
	color: #fff;

}

.f-login {
	width: 100%;
	/* background-color: #d7d350; */
	/* width: fit-content;
	align-content: space-between; */
}

.wrap- {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: auto;
	/* align-items: center; */
	justify-content: center;
	gap: 2%;
	/* background-color: #4CAF50; */
}

.caja {
	
	width: 130%;
	height: 35px;
	display: flex;
	margin: auto;
	margin-top: 20px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 5px;
	border: none;
	border: solid 2px rgba(255, 255, 255, 0.325); 

}

.caja-50 {
	width: 48%;
	/* background-color: aquamarine; */
}

.box-in {
	font-family: 'Prototype';
    width: 90%;
	margin: auto;
	 /* height: auto;
	margin: auto;
	padding: 0;
	margin-top: 0px; */
}


.btn1 {
	font-family: 'Prototype';
}


.label-in{
	/*background: rgba(31, 33, 175, 0.5);*/
	width: 100%;
	/* margin: auto; */
	/* background-color: brown; */
	/*display: flex;*/
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus, textarea:focus {
	border-color: #8cb1c5;
}

.btn-ses {
	
	width: 100%;
	height: 35px;
	margin-top: 20px;
	font-size: 15px;
	
}

.error {
	color: red;
	margin-left: 40px;
	margin-top: -20;
}

@media only screen and (max-width: 980px) and (min-width: 651px) {

	.box-login {
	
		width: 50%;
		
	}

	.cabecera-ini {
		font-size: 1em;

	}
	.caja {
	
		width: 100%;
		
		
	
	}
}

@media only screen and (max-width: 650px) and (min-width: 50px) {
	
	.btn {
	
		width: 30%;
		
	}

	.box-login {
		width: 95%;
	}

	.wrap- {
		display: block;
    }

	.caja {
		width: 208%;
    }
	
	.label-in{
		width: 200%;
    }
	.cabecera-ini {
		font-size: 0.8em;

	}

	
}

