@import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400,700);

* {
  margin: 0;
  padding: 0;
}

html {
  background: #e8562a;
  background: -webkit-linear-gradient(-90deg, #e8562a, #ba7000);
  background: -o-linear-gradient(-90deg, #e8562a, #ba7000);
  background: -moz-linear-gradient(-90deg, #e8562a, #ba7000);
  background: linear-gradient(-90deg, #e8562a, #ba7000);
}

@media all and (orientation: portrait) {
  html {
    background: #666;
  }
}

body {
  font-family: "Open Sans", sans-serif;
}

.button {
  width: 100px;
  background: #b50401;
  display: block;
  margin: 0 auto;
  margin-top: 1%;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
  -webkit-transition: background 0.3s;
}

#login {
  width: 380px;
  margin: 0 auto;
  margin-top: 10%;
  transition: opacity 1s;
  -webkit-transition: opacity 1s;
}

#login h1 {
  background: #e58631;
  padding: 20px 0;
  font-size: 140%;
  font-weight: 300;
  text-align: center;
  color: #fff;
}

form {
  background: #f0f0f0;
  padding: 6% 4%;
}

input[type="text"],
input[type="password"] {
  width: 92%;
  background: #ffffff;
  margin-bottom: 4%;
  border: 1px solid #e58631;
  padding: 4%;
  font-family: "Open Sans", sans-serif;
  font-size: 95%;
  color: #555;
}

input[type="text"]:focus,
input[type="password"]:focus {
  outline: 0;
}

input[type="submit"] {
  width: 100%;
  background: #e58631;
  border: 0;
  padding: 4%;
  font-family: "Open Sans", sans-serif;
  font-size: 100%;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
  -webkit-transition: background 0.3s;
}

input[type="submit"]:hover {
  color: #fff;
  background: #ff4b2d;
}

#footer {
  text-align: center;
  margin-top: 10px;
  color: #fff;
}

a {
  color: #53dc7a;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  font-size: 18px;
}

a:hover {
  color: #21b24b;
  text-decoration: none;
}

#version {
  font-size: 16px;
  font-style: italic;
}
