﻿
* { box-sizing:border-box; }

body {
	font-family: Helvetica;
	background: #eee;
  -webkit-font-smoothing: antialiased;
}

hgroup { 
	text-align:left;
	margin-top: 6em;
}

h1, h3 { font-weight: 300; }


h3 {font-size:20px;font-weight: 500; }

form {
	
	margin: 1em 1em 4em;
	padding: 1em 2em 1.4em 2em;
	background: #fafafa;
	border: 1px solid #ebebeb;
    border-radius:4px;
	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: 12px; 
}
.field-validation-error > span, .ErrorAlert{color:#ff4646; font-size:12px;}

input {
	font-size: 14px;
	padding: 16px 10px 10px 5px;
	-webkit-appearance: none;
	display: block;
	background: #fafafa;
	color: #636363;
	width: 100%;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #ccc;
}

input:focus { outline: none; }


/* Label */

label {
	color: #999; 
	font-size: 13px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 5px;
	top: 10px;
	transition: all 0.2s ease;
}


/* active */

input:focus ~ label, input.used ~ label {
	top: -8px;
  /*transform: scale(.90);*/ left: 5px;
	 font-weight: bold; 
	color: #393C41;
}


/* Underline */

.bar {
	position: relative;
	display: block;
	width: 100%;
}

.bar:before, .bar:after {
	content: '';
	height: 2px; 
	width: 0;
	bottom: 1px; 
	position: absolute;
	background: #006CB5; 
	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;
}

.captcha{margin-bottom:16px !important;}
/* active */

input:focus ~ .highlight {
	animation: inputHighlighter 0.3s ease;
}


/* Animations */

@keyframes inputHighlighter {
	from { background: #4a89dc; }
	to 	{ width: 0; background: transparent; }
}


/* Button */
.button1{width:48% !important; line-height:14px !important;}
.button,.button1 {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
  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: 2px solid #0E5084;
  cursor: pointer;
  transition: all 0.15s ease;
  border-radius:4px;
}
.button:focus { outline: 0; }


/* Button modifiers */

.buttonBlue {
  background-color: #006CB5 !important;
  text-shadow: 1px 1px 0 #269abc;
}

.buttonBlue:hover { background: #0E5084; }


/* 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%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.ripples.is-active .ripplesCircle {
  animation: ripples .4s ease-in;
}


/* Ripples animation */

@keyframes ripples {
  0% { opacity: 0; }

  25% { opacity: 1; }

  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}




.goto_link{color:#666; text-decoration:none;}
.goto_link:hover{color:#666; text-decoration:underline;}

/* Footer */
footer { text-align: center; }
footer p{margin:6px;}
.clearfix{clear:both;}
.footer_text{font-size:.8em;}
.footer {
  background-color: #fafafa;
  border-top: 1px solid #e0e0e0;
  color: #777;
  text-align: center; 
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}


@media (max-width:1024px){
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea{ width:80%;}
	img{max-width:100%;}
	
	}
	
@media (max-width:640px){
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea{ width:80%;}
	img{max-width:100%;}
	.login_container{margin:0 auto;}
	}
		
@media (max-width:480px){
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea{ width:100%;}
	img{max-width:100%;}
	.login_container{margin:0 auto;}
	}		



