*
{
  margin: 0;
  padding: 0;
}
body
{
  background: #ecf1f4;
  font-family: sans-serif;
}
h1{
  text-align: center;
  color: #fff;
  font-weight: normal;
  margin-bottom: 20px;
}
input
{
  width: 100%;
  background: none;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 6px 20px;
  box-sizing: border-box;
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
}
input[type="submit"]
{
  background: #bac675;
  border: 0;
  cursor: pointer;
  color: #3e3d3d;
}
input[type="submit"]:hover
{
  background: #a4b15c;
  transition: .6s;
}
.error-msg
{
  text-align: center;
  margin-top: 175px;
}
.form-wrap
{
  width: 320px;
  background: #3e3d3d;
  padding: 40px 20px;
  box-sizing: border-box;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
::placeholder
{
  color: #fff;
}
