@charset "utf-8";
/* CSS Document */

body{
	
	/*background: #f2f2f2;*/
	background: #fff;
	border-top: 0px solid #00abf0;
	margin: 0;
	font-family: "Roboto";
}

form{
	margin:auto;
	background: #fff;
	max-width: 1000px;
	padding: 30px;
	box-sizing:border-box;
	margin-top:20px;
	box-shadow: 0px 0px 3px grey;
	border-radius: 5px;
}

h2{
	
	color: #014f59;
	text-align:center;
	margin:0;
	font-size:30px;
	margin-bottom: 20px;
}

.intro{
	text-align:center;
	margin-bottom: 40px;
}

label{
	 margin-top:5px;
     font-size: 16px;
     color: #303F9F;
     width: 100%;
}

input, textarea{
	 
     font-size: 16px;
     color: #303F9F;
     width: 100%;
     outline: none;
     padding: 15px;
     background: none;
     border: none;
     border-bottom: 1px solid #00abf0; 
}


textarea{
	/*min-height: 140px;*/
	max-height: 200px;
	max-width: 100%;
}

select{
     font-size: 16px;
     color: #303F9F;
     width: 100%;
     outline: none;
     /*padding: 15px;*/
     background: none;
     border: none;
     border-bottom: 1px solid #00abf0; 
	 min-height: 40px;
	 /*max-height: 200px;*/
	 max-width: 100%;
}



#boton{
	/*background: #303F9F;*/
	background: #6e9ba1;
      border-radius: 1px;
      border: 2px solid #f2f2f2;
      color: #fff;
      cursor: pointer;
      display: inline-block;
      font-family: "Roboto";
      font-size: 16px;
      padding: 15px;
      width: 100%;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
}

#boton:hover{
	cursor: pointer;
	background: #303F9F;
	
}

.info{
	text-align: justify;
}

form img{
	box-shadow: 0px 0px 3px grey;
}


/*============ Paginador =============*/
.paginador ul{
	padding: 15px;
	list-style: none;
	background: #FFF;
	margin-top: 15px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-end;
}
.paginador a, .pageSelected{
	color: #428bca;
	border: 1px solid #ddd;
	padding: 5px;
	display: inline-block;
	font-size: 14px;
	text-align: center;
	width: 35px;
}
.paginador a:hover{
	background: #ddd;
}
.pageSelected{
	color: #FFF;
	background: #428bca;
	border: 1px solid #428bca;
















