html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Montserrat", "Open Sans", sans-serif;
  overflow: hidden;
  color: #295c5c;
  display: block;
  background: linear-gradient(#a3cbcc, #ffffff);
}

section {
  position: absolute;
  top: 48%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.login-logo {
  margin: 50px;
}

.login-top-menu {
  float: right;
  padding: 10px;
}

.login-top-menu a {
  color: #295c5c;
  padding: 5px;
  font-size: 16px;
}

.login-top-menu a:hover {
  color: #008e99;
}

.login-caption {
  font-size: 50px;
  text-transform: uppercase;
  display: block;
  text-align: center;
  color: #008e99;
  margin: 0;
}

.login-logo-cat {
  text-align: center;
  margin: 0 auto;
  display: block;
  margin-bottom: -25px;
  margin-top: -25px;
}

.login-warning {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
}

.login-button {
  background: #008e99;
  color: #ffffff;
  display: block;
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0 auto;
  padding: 12px 30px;
  height: 47px;
  width: 210px;
  box-shadow: 2px 2px 10px 1px rgb(0 0 0 / 20%);
}

.login-button:hover {
  background-color: #099faa;
  box-shadow: -2px -2px 10px 1px rgb(0 0 0 / 20%);
}

.login-button:active {
  background-color: #099faa;
  transform: translateY(2px);
  box-shadow: -2px -2px 10px 1px rgb(0 0 0 / 20%);
  -webkit-transition: transform 0.1s linear;
  -moz-transition: transform 0.1s linear;
  -ms-transition: transform 0.1s linear;
  -o-transition: transform 0.1s linear;
  transition: transform 0.1s linear;
}
