.big-title {
  font-size: 75px;
  font-family: "Ranchers";
  color: rgba(237, 22, 60, 1);
  margin-bottom: 50px;
  font-weight: 400;
}

.eingabefeld {
  margin-bottom: 50px;
  width: 700px;
}

.eingabefeld label {
  font-size: 36px;
  font-weight: 600;
  color: rgba(237, 22, 60, 1);
  margin-bottom: 10px;
  display: block;
}

.eingabefeld input {
  background-color: rgba(237, 22, 60, 0.15);
  border: none;
  height: 60px;
  font-size: 26px;
  width: 100%;
  color: rgba(237, 22, 60, 1);
  padding: 10px 20px;
  border-radius: 12px;
}

.noch-kein-konto {
  font-size: 20px;
  color: rgba(237, 22, 60, 1);
  font-weight: 600;
  margin-bottom: 30px;
}

.login-container {
  position: relative;
}

.login-illustration {
  position: absolute;
  bottom: 0;
  right: 0;
}

.fehler {
  font-size: 20px;
  color: rgba(237, 22, 60, 1);
  font-weight: 600;
  margin-bottom: 30px;
}

@media (max-width: 1100px) {
  .login-illustration {
  display: none;
  }
  }

@media (max-width: 768px) {
  .big-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
  }

  .eingabefeld {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .eingabefeld label {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .eingabefeld input {
    height: 50px;
    font-size: 18px;
    padding: 10px 15px;
  }

  .noch-kein-konto {
    font-size: 16px;
    text-align: center;
    padding: 0 10px;
  }

  .button {
    display: block;
    width: calc(100% - 20px);
    margin: 0 auto 20px;
    font-size: 18px;
    padding: 12px;
  }

  .login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 20px 10px;
    box-sizing: border-box;

  }

  .login-illustration {
    display: block !important;
    position: absolute; 
    right: 0;
    bottom: 0;
    top: 500px;
    width: 100%;
    height: auto;
    z-index: -1;
  }

  .fehler {
    font-size: 16px;
    text-align: center;
    padding: 0 10px;
  }

}