.loginpage {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #e3e3e3;
  display: flex;
}
.loginpage__errors {
  padding: 0.5rem 0.833rem;
  background-color: rgb(255, 245, 245);
  border: 1px solid rgb(252, 129, 129);
  color: rgb(197, 48, 48);
  text-align: center;
  border-radius: 4px;
}
.loginpage__visual {
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  width: 60%;
}
.loginpage__form {
  background: #fff;
  width: 40%;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.loginpage__form__content__header {
  text-align: center;
}
.loginpage__form__content__header__headline {
  font-size: 3.5rem;
  font-weight: 700;
  color: #001a72;
}
.loginpage__form__content__header__subline {
  color: rgb(124, 125, 138);
}
.loginpage__form__footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.75;
}
