
body {
  background-color: #9f9da7;
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  color: #2b3e51;
}

#login-form-wrap {
  background-color: #fff;
  margin: 30px auto;
  text-align: center;
  padding: 3px 0 0 0;
  border-radius: 4px;
  box-shadow: 0px 30px 50px 0px rgba(0, 0, 20, 10);
}


#login-form-wrap {
@media only screen and (max-width: 600px)
{
width: 53%;
}

@media only screen and (min-width: 600px) 
{
width: 55%;
}
@media only screen and (min-width: 800px) 
{
width: 32%;
}
@media only screen and (max-width: 450px) 
{
width: 75%;
}
@media only screen and (max-width: 300px) 
{
width: 95%;
}

}

#login-form {
  padding: 0%  10% 1% 10%;
}

input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  outline: none;
  height: 50px;
  line-height: 50px;
  border-radius: 4px;
}

input[type="text"],
input[type="password"] {
  padding: 0 0 0 10px;
  border: 1px solid #c2c0ca;
  font-style: normal;
  font-size: 16px;
  
}

input[type="text"]:focus:invalid,
input[type="password"]:focus:invalid {
  color: black;
  border-color: black;
}

input[type="submit"] {
  border: none;
  display: block;
  background-color: #3ca9e2;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 18px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}
input[type="submit"]:hover {
  background-color: #329dd0;
}

