@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700");
body{
	  background-image: url(../images/index.png);
	background-size: cover;
	
}

.form-box{
	background: #fff;
  margin: 100px auto;
  max-width: 500px;
  box-shadow: 0 3px 6px 0px rgba(0,0,0,0.16), 0 3px 6px 0px rgba(0,0,0,0.23);
	font-family: "Roboto", sans-serif;
}
form#login-form {
  overflow: hidden;
  position: relative;
  padding: 40px;
}
.head {
  color: #fff;
  font-size: 34px;
  font-weight: normal;
  padding: 30px 0;
  text-align: center;
  text-transform: uppercase;
  background: #2A56C6;
}
.head a{
	text-decoration: none;
	color: #fff;
}
.head span{
	position: relative;
	top: -10px;
	float: left;
	left:10px;
	padding: 15px;
}
.head span img{
	width: 30px;
	height: auto;
	
}
.form-group {
  margin-bottom: 15px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.form-group .label-control {
  color: #888;
  display: block;
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  width: 100%;
  pointer-events: none;
  height: 100%; 
}
.form-group .label-control::before,
.form-group .label-control::after{
  content: "";
  left: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.form-group .label-control::before{
  border-bottom: 1px solid #B9C1CA;
  transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
}

.form-group .label-control::after {
  border-bottom: 2px solid #03A9F4;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.form-control {
  border: none;
  border-radius: 0;
  margin-top: 20px;
  padding: 12px 0;
  width: 100%;
  font-size: 14px;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
}

.form-group .label-control .label-text{
   -webkit-transform: translate3d(0, 30px, 0) scale(1);
    -moz-transform: translate3d(0, 30px, 0) scale(1);
    transform: translate3d(0, 30px, 0) scale(1);
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
}
.active .label-control::after{
   -webkit-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
.active .label-control .label-text {
    opacity: 1;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    transform: scale(0.9);
    color: #03A9F4 !important;
}

.input-field label:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #B9C1CA;
  transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
}

input.btn[type="submit"],input.btn[type="button"] {
  background: #2A56C6;
  border:none;
  border-radius: 2px;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 3px;
  margin: 5px 0;
  overflow: hidden;
  padding: 10px;
  text-transform: uppercase;
  transition: all 0.15s ease-in-out 0s;
  width: 120px;
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.16), 0 1px 2px 0px rgba(0,0,0,0.23);
	text-decoration:none !important;
}
input.btn[type="submit"]:hover ,input.btn[type="button"]:hover{
  background: #4b81eb;
  box-shadow: 0 2px 4px 0px rgba(0,0,0,0.16), 0 2px 4px 0px rgba(0,0,0,0.23);
}


.text-p{
	padding-top: 50px;
  font-size: 14px;
  text-align: center;
  margin: 10px 0;
}
.text-p a{
  color: #175690;
	text-decoration: none;
}


.b_btn {

  background: #2A56C6;
  border:none;
  border-radius: 2px;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 3px;
  margin: 5px 0;
  overflow: hidden;
  padding: 10px;
  text-transform: uppercase;
  transition: all 0.15s ease-in-out 0s;
  width: 120px;
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.16), 0 1px 2px 0px rgba(0,0,0,0.23);
}
.b_btn:hover {
  background: #4b81eb;
  box-shadow: 0 2px 4px 0px rgba(0,0,0,0.16), 0 2px 4px 0px rgba(0,0,0,0.23);
}
.send_code {
	font-size: 13px;
	text-decoration: none;
  color: #2A56C6;
	
}
@media (max-width: 600px){
	 form#login-form {
    max-width: 70%;
		margin-left: auto;
		 margin-right: auto;
/*    margin: 30px auto;*/
  }
}

/*
@media (max-width: 480px){
  form#login-form {
    width: 90%;
    margin: 30px auto;
  }
}
*/


