@charset "utf-8";

body {
   background: #82E0AA; /* light green */
   color: #262626;
   background-position: center;
   /*margin-top: 145px;*/
   font-family:'Century Gothic', 'CenturyGothic', 'AppleGothic, sans-serif';
}

.i{
	font-family:'Century Gothic', 'CenturyGothic', 'AppleGothic, sans-serif';

}

.formulario {
	background-color: #82E0AA;
	/*transition: 2s;*/
	/*box-shadow: 0px 0px 0px #CCCCCC, 0px 0px 50px #FF0000;*/
	padding: 5px;
	border-radius: 15px;
	/*Este hace que lo float se vea normal*/
	overflow: hidden;
}

.filo {
	transition: 2s;
	box-shadow: 0px 0px 0px #CCCCCC, 0px 0px 50px #FF0000;
}

.marco {
	transition: 2s;
	box-shadow: 0px 0px 0px #CCCCCC, 0px 0px 50px #0099FF;
}

.line {
	background-color: #101113;
	overflow: hidden;
}

strong {
  font-weight:bold;
  color:black;
  font-size:18px;
}

.submit{
	cursor: pointer;
	
	float:left;
}
.contenedor{
	display:flex;
	justify-content:center;
	align-items:center;
  }
.contenedor-imagen{
	background-color: #CCF;
}

img{
	width: 100%;
}

#img_logo{
	width: 300px; 
	height: 300px;
}


.btn1{
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 35px 5px;
	outline: none;
	border: none;
	background-image: linear-gradient(to right, #008080, #03bb85, #008080 );
	background-size: 200%;
	font-size: 1.2rem;
	color: #fff;
	font-family: 'Poppins', sans-serif !important;
	text-transform: uppercase;
	margin: 1rem 0;
	cursor: pointer;
	transition: .5s;
}
.btn{
	background-image: linear-gradient(to right, #008080, #03bb85, #008080 );
}


a{
	text-decoration: none !important;
	color: #008080;
	font-size: 0.9rem;
	transition: .3s;
}

a:hover{
	color:#828282;
}

.btn1:hover{
   background-position: right;
   color:#fff;
}

.input-div > div{
	position: relative;
	height: 45px;
}

.input-div > div > h5{
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #9c9c9c;
	font-size: 18px;
	transition: .3s;
}

.input-div:before, .input-div:after{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 0%;
	height: 2px;
	background-color: #5DC1B9;
	transition: .4s;
}

.input-div:before{
	right: 50%;
}

.input-div:after{
	left: 50%;
}

.input-div.focus:before, .input-div.focus:after{
	width: 50%;
}

.input-div.focus > div > h5{
	top: -5px;
	font-size: 15px;
}

.input-div.focus > .i > i{
	color: #008080;
}

.input-div > div > input{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background: none;
	padding: 0.5rem 0.7rem;
	font-size: 1.2rem;
	color: #555;
	font-family: 'poppins', sans-serif !important;
}

/*Adaptarlo a pantalla de tablet o telefonos*/
@media screen and (max-width: 600px){
	.slider .caption p{
		display: none;
	}

	.slider .caption h1{
		font-size: 30px;
	}

	.left, .right{
		font-size: 25px;
	}

	.slider li img{
		width: 600px;
	}

	/*.pagination{
		display: none;
	}*/
}