* { box-sizing:border-box; }

body {
	font-family: Helvetica;
	background: #eee;
  -webkit-font-smoothing: antialiased;
}

.hgroup { 
	/*border:1px solid red;*/
	text-align:center;
	/*margin-top: 3em;*/
	width: 30%;
	margin: 1em auto;
	/*display: flex;*/
}

h1, h3 { font-weight: 300; }

	/*h1 { 
		color: #636363; 
		text-shadow: 1px 1px #ccc;
	}

	h3 { 
		color: #b9001a; 
		text-shadow: 1px 1px #ccc; 
	}*/

.EsloganPrincipal {
	text-align: center;
	margin-top: -35px;
	margin-bottom: 38px;
}
	
.SubTituloPrincipal{
	margin-top: -20px;
    margin-bottom: 40px;
}

form {
	/*width: 380px;*/
	width: 400px;
	margin: 1em auto;
	padding: 3em 2em 2em 2em;
	background: #fafafa;
	border: 1px solid #ebebeb;
	box-shadow: rgba(0,0,0,0.14902) 0px 1px 1px 0px,rgba(0,0,0,0.09804) 0px 1px 2px 0px;
}

.group { 
	position: relative; 
	margin-bottom: 45px; 
}

input {
	font-size: 18px;
	padding: 10px 10px 10px 5px;
	-webkit-appearance: none;
	display: block;
	background: #fafafa;
	color: #636363;
	width: 100%;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #757575;
}

input:focus { outline: none; }


/* Label */

label {
	color: #999; 
	font-size: 18px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 5px;
	/*top: 10px;*/
	top: -12px;
	-webkit-transition:all 0.2s ease;
	transition: all 0.2s ease;
}


/* active 

input:focus ~ label, input.used ~ label {
	top: -20px;
  -webkit-transform: scale(.75);
          transform: scale(.75); left: -2px;
	color: #b9001a;
}*/

/* Underline */

.bar {
	position: relative;
	display: block;
	width: 100%;
}

.bar:before, .bar:after {
	content: '';
	height: 2px; 
	width: 0;
	bottom: 1px; 
	position: absolute;
	background: #b9001a; 
	-webkit-transition:all 0.2s ease; 
	transition: all 0.2s ease;
}

.bar:before { left: 50%; }

.bar:after { right: 50%; }


/* active */

input:focus ~ .bar:before, input:focus ~ .bar:after { width: 50%; }


/* Highlight */

.highlight {
	position: absolute;
	height: 60%; 
	width: 100px; 
	top: 25%; 
	left: 0;
	pointer-events: none;
	opacity: 0.5;
}


/* active */

input:focus ~ .highlight {
	-webkit-animation: inputHighlighter 0.3s ease;
	        animation: inputHighlighter 0.3s ease;
}


/* Animations 

@-webkit-keyframes inputHighlighter {
	from { background: #b9001a; }
	to 	{ width: 0; background: transparent; }
}

@keyframes inputHighlighter {
	from { background: #b9001a; }
	to 	{ width: 0; background: transparent; }
}
*/

/* Button */

.button {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  margin: .3em 0 1em 0;
  width: 100%;
  vertical-align: middle;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  letter-spacing: 1px;
  background: transparent;
  border: 0;
  /*border-bottom: 1px solid #2b2b2b;*/
  cursor: pointer;
  -webkit-transition:all 0.15s ease;
  transition: all 0.15s ease;
  text-transform: uppercase;
}
.button:focus { outline: 0; }


/* Button modifiers */

/*	.buttonBlue {
	  background: #b9001a;
	  text-shadow: 1px 1px 0 #111;
	}

	.buttonBlue:hover { 
		background: #d78994; 
	}
*/

/* Ripples container */

.ripples {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}


/* Ripples circle */

.ripplesCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.ripples.is-active .ripplesCircle {
  -webkit-animation: ripples .4s ease-in;
          animation: ripples .4s ease-in;
}


/* Ripples animation */

@-webkit-keyframes ripples {
  0% { opacity: 0; }

  25% { opacity: 1; }

  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}

@keyframes ripples {
  0% { opacity: 0; }

  25% { opacity: 1; }

  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}

footer { text-align: center; }

footer p {
	color: #888;
	font-size: 13px;
	letter-spacing: .4px;
}

footer a {
	color: #b9001a;
	text-decoration: none;
	-webkit-transition:all .2s ease;
	transition: all .2s ease;
}

footer a:hover {
	color: #666;
	text-decoration: underline;
}

footer img {
	width: 8%;
	-webkit-transition:all .2s ease;
	transition: all .2s ease;
}

footer img:hover { opacity: .83; }

footer img:focus , footer a:focus { outline: none; }

.TituloMensaje{
	margin-bottom:-9px;
	color: red;
}

.TxtGEA{
	color: #2E566F;
	/* text-shadow: 1px 1px #ccc; */
	font-weight: 700;
	margin-top: 6px;
	margin-bottom: 0px;
}


			/* make keyframes that tell the start state and the end state of our object */
			 
				@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
				@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
				@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

			.fade-in {
				opacity:0;  /* make things invisible upon start */
				-webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
				-moz-animation:fadeIn ease-in 1;
				animation:fadeIn ease-in 1;
			 
				-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
				-moz-animation-fill-mode:forwards;
				animation-fill-mode:forwards;
			 
				-webkit-animation-duration:1s;
				-moz-animation-duration:1s;
				animation-duration:1s;
			}	

			.fade-in.one {
				-webkit-animation-delay: 0.7s;
				-moz-animation-delay: 0.7s;
				animation-delay: 0.7s;
			}

			.box{
				background-color: #eeeeee;
				padding: 1px;
				color: #111;
				font-size: 13px;
				font-family: arial;
				font-weight: bold;
				position: relative;
				top: -27px;
				text-align: center;
				border-radius: 2px;
				text-shadow: 1px 1px #ccc;
			}

						.IPacceso{
				/*border: 1px solid red;*/
				color: #111;
				font-size: 13px;
				font-family: arial;
				font-weight: bold;
				text-align: center;
				border-radius: 2px;
				text-shadow: 1px 1px #ccc;
			}

			.InfoSeguridad, .InfoConexionSSL{
				text-align: center;
				font-size: 11px;
				font-weight: bold;
			}
			
			.InfoSeguridad{
				color: green;
			}
			
			.InfoConexionSSL{
				color: #111;
			}
			
			.EnlaceSitioSeguro{
				text-decoration: none;
				color: green;
				text-decoration: underline;
			}