*,
*::before,
*::after {
  box-sizing: border-box;
}
body, html {
  height: 100%;
  margin: 0;
}
body {
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.bg {
  background-image: url("login.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.login-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form {
  position: relative;
  z-index: 1;
  background: #ffffff;
  max-width: 550px;
  margin: 0 auto 0px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form input {
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
}
.form input[type=submit] {
  text-transform: uppercase;
  outline: 0;
  background: #008C4F;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #ffffff;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
.form .message {
  margin: 15px 0 0;
  color: #dc3545;
  font-size: 1.1em;
}
.form .info {
    margin: 10 0 0 0;
    color: #b3b3b3;
  }
.form .info a {
  color: #808080;
  font-size: 1em;
  text-decoration: none;
}
.form .register-form {
  display: none;
}
