@font-face
{
	font-family: texto;
	src: url(../fonts/Roboto/Roboto-Regular.ttf);
}

body
{
	background:#bbdefb;
	font-family:"texto";
	font-size:small;
	margin:8px 0 16px;
	text-align:center;
}

#form_container
{
	background:#fff;	
	margin: auto;
	text-align:center;
	width:1000px;
}

#top
{
	display:block;
	height:10px;
	margin:10px auto 0;
	width:1000px;
}

.contenedor
{
	width: 100px;
	margin: auto;
	padding: 30px;
	display: grid;
	align-items: center;
	justify-content: center;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

#footer
{
	clear:both;
	color:#999999;
	text-align:center;
	width:1000px;
	padding-bottom: 15px;
	font-size: 85%;
}

#bottom
{
	display:inline-block;
	height:10px;
	margin:0 auto;
	width:1000px;
}

form.appnitro
{
	margin:20px 20px 0;
	padding:0 0 20px;
}

/**** Logo Section  *****/
h1
{
	background-color:#003A72;
	margin:0;
	min-height:0;
	padding:0;
	text-decoration:none;
	text-indent:-8000px;
	
}

h1 a
{
	
	display:block;
	height:100%;
	min-height:40px;
	overflow:hidden;
}

/**** Form Section ****/
.appnitro
{
	font-family:texto, sans-serif;
	font-size:small;
}

form ul
{
	font-size:100%;
	list-style-type:none;
	margin:0;
	padding:0;
	width:100%;
}

form li
{
	display:block;
	margin:0;
	padding:4px 5px 2px 9px;
	position:relative;
}

.form_description
{
	border-bottom:1px dotted #ccc;
	clear:both;
	display:inline-block;
	margin:0 0 1em;
}

.form_description[class]
{
	display:block;
}

.form_description h2
{
	clear:left;
	font-size:160%;
	font-weight:400;
	margin:0 0 3px;
}

.form_description p
{
	font-size:95%;
	line-height:130%;
	margin:0 0 12px;
}


.boton
{
	align-items: center;
	justify-items: center;
	width: 250px;
	height: 50px;
	background: #141414;
	color: #fff;
	font-family: 'texto', sans-serif;
	font-size: 15px;
	font-weight: 500;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	transition: .3s ease all;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

.boton span
{
	position: relative;
	z-index: 2;
	transition: .3s ease all;	
}

/*BOTÓN INICIO DE SESIÓN*/
.boton.uno span
{
	transition: .5s ease-in-out all;
	left: 1%;
}

.boton.uno .icono
{
	display: flex;
	align-items: center;
	position: absolute;
	z-index: 2;
	left: -10px;
	transition: .4s ease-in-out all;
	opacity: 0;
}

.boton.uno svg
{
	color: #fff;
	width: 35px;
	height: 35px;
}

.boton.uno:hover
{
	background: #003A72;
}

.boton.uno:hover .icono
{
	left: calc(100% - 40px);
	opacity: 1;
}

.boton.uno:hover span
{
	left: -50px;
}

/*BOTÓN VER REGISTROS*/
.boton.dos::after
{
	content: "";
	width: 300px;
	height: 600px;
	background: #003A72;
	position: absolute;
	z-index: 1;
	top: -600px;
	left: 0;
	transition: .5s ease-in-out all;
	border-radius: 0px 0px 400px 400px;
}

.boton.dos:hover::after
{
	top: 0;
}

/* Services Section
--------------------------------*/

#services {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#services .box {
  
  height: 440px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#services .box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
}

#services .box:hover .title{
  color: #003A72;
}

.contenedorQR {
	display: flex;
	justify-content: center;
	padding: 40px 0;
}

.section-header h4 {
  font-size: 29px;
  color: #003A72;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.error
{
  background-color: #BA1E1E;
  position: absolute;
  top: 10px;
  padding: 10px 10px;
  border-radius:  10px 10px 10px 10px;
  color: #fff;
  width: 100%;
  text-align: center;
  display: none;
}

#imagen{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 600px)
{
    #form_container
    {
    	width:380px;
    }
    
    #top
    {
    	width:380px;
    }
    
    .contenedor
    {
    	grid-template-columns: auto;
    }
    
    #footer
    {
        font-size: 5px;
    	width:340px;
    }
    
    #bottom
    {
    	width:340px;
    }
    
    .section-header h3
    {
        font-size: 15px;
    }
    
    .box .title
    {
        font-size: 12px;
    }
    
    form li
    {
        font-size: 8px;
    }
    
}