.container {
  display: flex;
  height: 100%;
}

.left-column {
  flex: 6;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.right-column {
  flex: 4;
  background-color: #FFF;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: auto;
}

.image {
  width: 20vh;
  height: auto;
  bottom: 0;
}

.component {
  width: 75%;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.submit-button {
  background-color: #009245;
  color: #fff;
  cursor: pointer;
}

.headline {
  font-weight: 700;
  color: black;
  margin-bottom: 1vh;
  text-align: center;
  width: 100%;
}

.text-training {
  text-align: center;
  width: 85%;
  margin-bottom: 2vh;
  line-height: 1;
}

h2 {
  font-size: clamp(2.5rem, 2vw, 3rem);
  font-weight: bold;
  line-height: 0.8;
  margin: 0;
}

h4 {
  font-size: clamp(1.5rem, 1.6vw, 2rem);
  font-weight: 400;
  margin: 0;
  width: 100%;
  text-align: center;
}

input {
  height: clamp(4rem, 4vw, 5.5rem);
  width: 100%;
  font-size: clamp(1.5rem, 1.2vw, 2.5rem);
  text-align: center;
  border: 0.1rem solid #009245;
  border-radius: 0.2rem;
  box-sizing: border-box;
  font-family: 'Almoni', sans-serif;
  outline: none;
  box-shadow: none;
}

.text-button {
  font-weight: 400;
  color: white;
  text-align: center;
}

.link {
  color: #009245;
  text-decoration: none;
  font-weight: 400;
  display: inline-block;
  font-size: 38px;
  margin-top: 2vh;
  padding: 10px 20px;
}

.error-text {
  margin-bottom: 1vh;
  text-align: right;
  color: #B62424;
  font-weight: 400;
  width: 75%;
  margin-left: auto;
}

.logout {
  width: 40px;
  height: auto;
  display: none;
  filter: invert(30%) sepia(94%) saturate(4395%) hue-rotate(143deg) brightness(98%) contrast(94%);
}

.image-link {
  margin-top: 0.5vh;
  margin-left: 0.5vh;
  width: 200px;
  display: flex;
  justify-content: space-between;
  color: black;
  font-style: normal;
  border: 1px solid #009245;
  border-radius: 20px;
  font-size: 15px;
  text-align: right;
  font-weight: 400;
  padding: 0 10px;
  text-decoration: none;
}

.link-sx {
  text-decoration: none;
  color: #009245;
  display: inline-block;
  padding-top: 1rem;
}

@media (max-width: 768px) {

  .component {
    width: 75%;
    max-width: 360px;
  }

  .container {
    flex-direction: column;
    overflow: auto;
  }

  .right-column {
    order: 2;
    flex: 2;
    border-radius: 0.8rem 0.8rem 0 0;
  }

  .left-column {
    order: 1;
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .link-sx {
    padding-top: 0.5rem;
  }

  .link {
    font-size: 16px;
    margin-top: 1.5vh;
  }

  .image {
    width: 20vh;
  }

  .container {
    flex-direction: column;
  }
}