.container {
  padding: 24px;
  position: relative;
  height: 100%;
}

.wrapper {
  width: 100%;
  top: 0;
  left: 0;
  height: inherit;
  height: 100vh;
  position: fixed;
}

.logo {
  margin-top: -24px;
  max-width: 200px;
  margin: 0 auto;
}

.common-title {
  text-align: center;
  text-transform: uppercase;
  color: rgb(13, 48, 110);
  margin-top: 16px;
}

.input-wrapper {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}

.input-label {
  text-transform: uppercase;
  color: rgb(245, 156, 0);
  font-size: 18px;
  text-shadow: -2px 2px #fff;
}

.input-desc {
  font-weight: 300;
  font-style: italic;
  color: rgb(13, 48, 110);
}

.input {
  padding: 16px 12px;
  background-color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  color: rgb(13, 48, 110);
  font-size: 18px;
}

.error {
  color: #b00020;
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
  display: none;
}

.hide {
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.33s, opacity 0.33s linear;
}
