.main-landingpage-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
    width: 100%;
}

.login-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-left {
  background: #717171;
  width: 50%;
}

.logo-index {
  max-width: 70%;
  height: auto;
}

.login-right {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: #f9f9f9;
  height: 600px;
  width: 40%;
  border-radius: 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.Registrieren-container{
    margin-bottom: 50px;
    display: none;
}

.Registrieren-button{
    text-decoration: none;
    color: #8A1238;
    font-size: 20px;
    font-weight: bold;
}

.Registrieren-button:hover{
    color: #000000;
    text-decoration: underline;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 250px;
}

input {
  padding: 10px;
  font-size: 16px;
}

button {
  padding: 10px;
  background-color: #8A1238;
  color: white;
  border: none;
  cursor: pointer;
}

.footer-links-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 50px;
}

.footer-links{
    text-decoration: none;
    color: black;
    font-weight: 400;
    font-size: 18px;
}