* {
  padding: 0;
  margin: 0;
}
body,
html {
  height: 100%;
  width: 100%;
}
.alert {
  background: rgba(240, 13, 69, 0.1);
  text-align: center;
  color: #f00d45;
  padding: 10px 20px;
  border: 1px solid #f00d45;
  margin: 20px 30px 0;
  border-radius: 5px;
  font-size: 14px;
}
.alert.info {
  background: rgba(34, 176, 47, 0.1);
  border-color: #22B02F;
  color: #22B02F;
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v34/o-0IIpQlx3QUlC5A4PNb4g.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v34/o-0NIpQlx3QUlC5A4PNjXhFlYw.ttf) format('truetype');
}
body {
  color: #fff;
  font-family: 'Noto Sans', sans-serif;
  overflow: hidden;
  background: linear-gradient(167.43deg, #1D262F 45.02%, #314457 94.53%);
}
#loginBox {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  left: 20%;
  position: absolute;
  top: 10%;
  width: 300px;
  color: #222;
  z-index: 2;
}
#loginBox h1 {
  padding: 20px 30px 10px;
  border-bottom: 1px solid #cccccc;
}
#loginBox h1 img {
  width: 160px;
}
#loginBox form {
  padding: 10px 30px 30px;
  background: linear-gradient(150deg, #ffffff 0%, #ffffff 41%, #d7d7d7 100%);
}
#loginBox form p {
  padding: 10px 0;
}
#loginBox form label {
  display: block;
  font-size: 12px;
  padding-bottom: 7px;
}
#loginBox form input.text {
  width: 100%;
  box-sizing: border-box;
  padding: 5px 8px;
  border: 1px solid #555;
  border-radius: 4px;
}
#loginBox form input.submit {
  background: #f00d45;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  border: 0;
  -webkit-appearance: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-weight: 300;
  transition-duration: 0.3s;
  transition-property: all;
}
#loginBox form input.submit:hover,
#loginBox form input.submit:focus {
  background: #c00a37;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
#loginBox p.lost-password {
  border-top: 1px solid #cccccc;
  background: #f2f2f2;
  padding: 20px 30px;
  font-size: 14px;
}
#loginBox p.lost-password a {
  color: #999999;
  text-decoration: none;
}
#loginBox p.lost-password a:hover {
  color: #666666;
  text-decoration: underline;
}
#languageBox {
  position: absolute;
  bottom: 20px;
  right: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  overflow: hidden;
}
#languageBox ul {
  list-style: none;
}
#languageBox li {
  display: inline-block;
}
#languageBox li a {
  display: block;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 38px;
  text-align: center;
  font-size: 13px;
  text-decoration: none;
}
#languageBox li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
#languageBox li.selected a {
  color: #314457;
  background: #fff;
}
@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}
.alert {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
