input {
  outline: none;
}

 

#box {
  position: fixed;
	left: 50%;
	top: 40%;
	width: 350px;
	height: auto;
  margin: 0 auto;
	margin-left: -170px;
	margin-top: -150px;
  background-color: #f8f9fb;
  -moz-box-shadow: 0 0 15px -7px #000;
  -webkit-box-shadow: 0 0 15px -7px #000;
  box-shadow: 0 0 15px -7px #000;
  border: 1px solid #c3cada;
  border-radius: 3px;
}

.login_header {
  width: 100%;
  height: 90px;
  
}
.login_header > span{
	text-align: center;
}
.login_header > h4 {
  text-align: center;
  padding-top: 38px;
  color: #8f95a1;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

h6 {
  margin: 0;
  width: auto;
  height: 10px;
  background-color: #fff;
  padding: 20px 35px;
  color: #a9b0c0;
  border-top: 1px solid #c3cada;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

input[type="text"], input[type="password"] {
  width: 100%;
  height: 50px;
  border: none;
  font-size: 20px;
  padding: 0 35px;
  box-sizing: border-box;
  font-family: serif;
  color: #1C1C1C;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

input[type="text"]:focus, input[type="password"]:focus {
  border-left: 3px solid #008748;
  -webkit-transition: border .2s ease;
  -moz-transition: border .2s ease;
  -o-transition: border .2s ease;
  transition: border .2s ease;
}

input[type="password"] {
  border-bottom: 1px solid #c3cada;
}

input[type="submit"] {
  background-color: #008748;
  border: none;
  height: 60px;
  width: 310px;
  margin: 0 auto;
  display: block;
  color: #fff;
  margin: 30px auto;
  border: 1px solid #35A872;
  border-radius: 3px;
  transition: all .2s ease;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

input[type="submit"]:hover {
  background-color: #00a65a;
  border: 1px solid #35A872;
}
#loginerror{
	color: #FE655D;
	display: block;
}
#logblock{
	color: #1eb81f;
	display: block;
}