body {
  margin: 0;
  padding: 0; }

.box__container__blue-overlay {
  width: 100vw;
  height: 100vh;
  background-color: #024667;
  opacity: 0.9;
  position: absolute;
  z-index: 1; }

.box__container {
  background-image: url("/titelbild_02.jpg");
  width: 100vw;
  height: 100vh;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.data__container {
  background-color: #fff;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 460px;
  padding: 40px; }
  .data__container h1, .data__container p {
    color: #444;
    font-family: Arial;
    text-align: center; }
  .data__container h1 {
    font-size: 46px;
    padding-top: 0;
    padding-bottom: 10px;
    margin: 0; }
  .data__container p {
    font-size: 16px;
    line-height: 22px; }
    .data__container p.wrong {
      color: #cc0000; }
  .data__container a {
    color: #024667;
    text-decoration: none;
    font-weight: 600; }

.login__form {
  width: 100%;
  text-align: center; }
  .login__form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 40px;
    max-width: 360px;
    margin: 0 auto; }
  .login__form input {
    width: 310px;
    height: 50px;
    border: 1px solid #024667;
    margin-bottom: 20px;
    padding: 0 15px;
    font-size: 16px;
    color: #444;
    outline: none; }
  .login__form label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #024667;
    color: #ffffff; }
    .login__form label svg {
      height: 20px;
      fill: #fff; }
  .login__form button {
    width: 100%;
    padding: 15px;
    background-color: #024667;
    border: 1px solid #024667;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    -webkit-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    transition: background-color 0.5s;
    font-size: 15px;
    outline: none; }
    .login__form button:hover {
      background-color: #002639;
      color: #fff;
      -webkit-transition: background-color 0.5s;
      -o-transition: background-color 0.5s;
      transition: background-color 0.5s; }
