.main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url(Images/WWTP_general.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.main__left {
  flex-grow: 1;
  flex-basis: 0;
  height: 100vh;
}

.main__left img {
  padding: 20px;

  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 100;
}

.main__left img:hover {
  background-color: #fef8eb;
  border-radius: 30px;
}

.titel__login {
  padding: 20px;
  border-radius: 30px;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  font-size: 5rem;
  color: #0f3f93d2;
  box-shadow: 5px 5px 5px #0f3f93b2;
  background-color: #fef8ebd0;

  text-align: center;
}

.main__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.85) 33%
  );

  flex-grow: 2;
  flex-basis: 0;
  height: 100vh;
  z-index: 10;
}

.welcome {
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 3rem;
}

.login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* .login__inputfields {
  display: flex;
  flex-direction: row;
} */

/* .login__button {
  display: flex;
} */

.login__input {
  border: none;
  padding: 0.5rem 2rem;
  font-size: 1.6rem;
  font-family: inherit;
  text-align: center;
  width: 12rem;
  border-radius: 10rem;
  margin-right: 1rem;
  color: inherit;
  background-color: #fef8eb;
  border: 1px solid #777;
  transition: all 0.3s;
}

.login__input:focus {
  outline: none;

  border: 1px solid #0f3f93;
}

.login__btn {
  border: none;
  background: none;
  font-size: 5rem;
  font-weight: 900;
  color: #777;
  cursor: pointer;
  transition: all 0.3s;
}

.login__btn:hover,
.login__btn:focus,
.btn--sort:hover,
.btn--sort:focus {
  outline: none;
  color: inherit;
}

.footer__login {
  position: fixed;
  bottom: 10px;
  right: 15px;
  font-weight: 500;
}
