@import url(https://fonts.googleapis.com/css?family=Lato:400,300,700);
*, *:before, *:after {
  box-sizing: border-box;
}

body {
  background: url("../static/image/login_background.jpg") no-repeat center center fixed;
  background-size: cover;
  font: 16px "Lato", Arial, sans-serif;
  color: #a6a4a2;
  padding: 40px 0;
}

.container {
  margin: 180px auto;
  width: 500px;
  height: 500px;
  background: #fff ;
  border-radius: 15px;
  border: 8px solid rgba(245, 245, 245, 0.5);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

hr {
  border: 0;
  height: 1px;
  background: #e9e6e2;
  margin: 15px 100px;
}

a {
  text-decoration: none;
  color: #4DA528;
}
a:hover {
  text-decoration: underline;
  color: #c5a5dd;
}

.header {
  text-align: center;
  margin-top: 70px;
  font-size: 16px;
}
.header .login {
  color: #4DA528;
  text-transform: uppercase;
  margin-right: 5px;
  font-size: 26px;
  
}
.header .signup {
  color: #6c6763;
  text-transform: uppercase;
  margin-left: 5px;
}

input {
  outline: none;
  display: block;
  width: 70%;
  border: 1px solid #d9d9d9;
  border: none;
  border-radius: 3px;
  background: #f7f6f5;
  margin: 5px auto;
  padding: 18px 16px;
}

input[type=submit] {
  width: 35%;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  background: linear-gradient(#4DA528, #4DA528);
  cursor: pointer;
  padding: 13px 20px;
}
input[type=submit]:hover {
  background: linear-gradient(#bda8db, #a898c2);
}

.help-block {
  margin-top: -10px;
  font-size: 16px;
  text-align: center;
}

::-webkit-input-placeholder {
  font-size: 16px;
}

::-moz-placeholder {
  font-size: 16px;
}