.login-page {
  width: 300px;
  padding: 8% 0 0;
  margin: auto;
}
.form {
  position: relative;
  z-index: 1;
  background: #f2ead2;
  max-width: 300px;
  margin: 0 auto 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
}
.form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #fff;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
  border-radius:8px;
}
.form button {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #623B24;
  width: 90%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  border-radius:8px
}
.form button:hover,.form button:active,.form button:focus {
  background: #AD693B;
}
.form .message {
  margin: 15px 0 0;
  color: #666;
  font-size: 12px;
}
.form .message a {
  color: #72a200;
  text-decoration: none;
}
