@import url(https://fonts.googleapis.com/css?family=Prompt&display=swap);/**
* Colors
*/

* {
  font-family: "Prompt", sans-serif;
}

h1 {
  font-style: normal;
  font-weight: bold;
  font-size: 150px;
  line-height: 0px;
  color: #fff;
  letter-spacing: 5px;
  text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #fff;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 0px;
  text-align: center;
}

h3 {
  font-style: normal;
  font-weight: bold;
  font-size: 25px;
  line-height: 0px;
  text-align: center;
  color: #fff;
}

html {
  padding: 0;
  margin: 0;
  background-color: #a7790b;
}

html::after {
  content: "";
  background-image: url("/images/background-login.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.15;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  z-index: -1;
}

body {
  padding: 0;
  margin: 0;
}

body div#login-content {
  position: relative;
  text-align: center;
}

body div#login-content div#header img {
  max-width: 500px;
}

@media (max-width: 600px) {
  body div#login-content div#header img {
    max-width: 350px;
  }
}

@media (max-width: 350px) {
  body div#login-content div#header img {
    max-width: 250px;
  }
}

body div#login-content div#content {
  text-align: center;
}

body div#login-content div#content .button {
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #fff;
  display: block;
  margin: 30px auto 5px;
  cursor: pointer;
}

body div#login-content div#content .button:hover {
  background-color: rgba(51, 51, 51, 0.7);
  transition: all 1s;
}

body div#login-content div#content .login-button {
  background-color: rgba(51, 51, 51, 0.3);
  width: 118px;
  height: 38px;
}

body div#login-content div#content a.sub-link {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: #fff;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

body div#login-content div#content a.sub-link:hover {
  transition: all 1s;
  color: #cccccc;
}

body div#login-content form {
  text-align: center;
  margin: 0 auto;
}

body div#login-content form .form-input {
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  background-color: transparent;
  outline: none;
  width: 298px;
  height: 38px;
  transition: box-shadow 1s;
}

body div#login-content form .form-input:focus {
  box-shadow: 0px 0px 23px -2px rgba(0, 0, 0, 0.43);
  transition: box-shadow 1s;
}

body div#login-content form .invalid {
  color: red;
}

body div#login-content .alert {
  display: block;
  width: 50%;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(0, 128, 0, 0.5);
  color: #fff;
}

