.form-ingreso{
	max-width: 600px ; margin: 0 auto ;
}

#titulo_identificate{
	color: grey ; 
}


#titulo_identificate {
  line-height: 0.5;
  text-align: center;
}
#titulo_identificate span {
  display: inline-block;
  position: relative;  
}
#titulo_identificate span:before,
#titulo_identificate span:after {
  content: "";
  position: absolute;
  height: 5px;
  border-bottom: 1px solid black;
  top: 0;
  width: 50% ; 
}
#titulo_identificate span:before {
  right: 100%;
  margin-right: 15px;
}
#titulo_identificate span:after {
  left: 100%;
  margin-left: 15px;
}

#titulo_principal_identificate{
	margin: 0 auto ; 
	text-align: center ;
	
}

#contenedor_botones{
	margin: 0 auto ; 
	
	text-align: center ;
}

#recuperarcontra{
  

}


.labelinput{
	font-weight: bold ; 
	color: #546B8E;
	font-family: 'Helvetica', 'Arial', sans-serif; 
	font-size: 15px ; 
	 	
}

p.labelinput{
	margin-bottom: -2px ; 
}

.cartel-atencion{
  padding: 20px;
  background: white;
  color: #4877A5;
}

.titulo-cartel-atencion{
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-weight: 900;
  font-size: 22px;
}

.tel-cartel-atencion{
  font-weight: 600;
  font-size: 18px
}

.error-form-ingreso{
    transition: all 1s ease;
    font-size: 16px;
    max-height: 0;
    opacity: 0;
    padding: 0;
}

.resaltar-error{
    transition: opacity 1s ease;
    -webkit-animation: resaltar-sombra 2s ;
    animation: resaltar-sombra 2s ;
    max-height: 300px;
    opacity: 100;
    padding: 15px;
}


@keyframes resaltar-sombra {
    from {
        -webkit-box-shadow: 0px 0px 6px 0px rgba(225, 0, 0, 0.7);
        -moz-box-shadow:    0px 0px 6px 0px rgba(225, 0, 0, 0.7);
        box-shadow:         0px 0px 6px 0px rgba(225, 0, 0, 0.4);
        border: 1px solid red ;

    }
}