@charset "utf-8";
/* CSS Document */
.wrapper-login {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background: #083145;
  align-items: center;
  justify-content: center;
}
.wrapper-login footer {
  margin-top: auto;
  color: #718088;
}
.login-tm {
  width: 100px;
  margin: 0 auto 50px;
  ;
}
.login-title {
  margin-bottom: 20px;
}
form.login {
  width: 450px;
  text-align: center;
}
form.login > h1 {
  color: #f4f4f4;
  font-weight: 400;
  margin-bottom: 20px;
}
form.login input {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  display: block;
  width: 450px;
  padding: 15px;
  margin-bottom: 20px;
  transition: all 0.1s ease-in-out;
  outline: none;
  border: none;
  box-sizing: border-box;
}
form.login input:focus {
  background: rgba(255, 255, 255, 1);
  transition: all 0.1s ease-in-out;
}
form.login button {
  position: relative;
  display: block;
  margin-top: 40px;
  padding: 15px;
  width: 450px;
  border-radius: 6px;
  transition: all 0.1s ease-in-out;
  font-size: 1.5rem;;
  font-weight: bold;
  background: #00a6f7;
  color: #f4f4f4;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: none;
  transition: all 0.5s 0s ease;
}
form.login button:hover {
  background: #00b4ff;
}
form.login button:active {
  top: 1px;
}