body {
  margin: 0;
}

.login_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  width: 100%;
  font-family: "Roboto", sans-serif;
}

.login_background-img {
  background-image: url(/Images/logon-background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 33%;
}

.login_form-container {
  display: flex;
  flex-direction: column;
  width: 68%;
  height: 100%;
  padding: 4% 10%;
  background-color: white;
}

.login_logo {
  width: 22%;
  margin-top: 1rem;
}

.login_titles {
  margin: 1.5rem 0;
}

.login_titles h1 {
  font-size: 3.5rem;
  font-family: "Roboto", sans-serif;
}

.login_titles h3 {
  font-size: 1.8rem;
  color: rgba(0, 0, 0, 0.6);
  font-family: "Roboto", sans-serif;
}

.login_form-container hr {
  width: 90%;
  border: 0.5px solid rgba(144, 149, 157, 0.15);
  text-align: left;
  margin: 1rem 0;
  margin-top: 3rem;
}

.login_form-container a {
  text-decoration: underline;
}

.login_form-group {
  width: 40%;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.login_form {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.login_input-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  row-gap: 0.5rem;
}

.login_input-container {
  position: relative;
}

.login_input-container input {
  width: 100%;
  padding-right: 3rem;
}

.login_input-container input:focus {
  color: #000;
}

.login_input-container span {
  position: absolute;
  right: 2%;
  top: 15%;
  cursor: pointer;
  display: none;
}

.login_input-validation {
  color: red;
  font-size: 1.4rem;
}

.login_form-options {
  margin: 0.5rem 0;
  text-align: end;
}

.login_form-submit {
  width: 100%;
  color: white;
  background-color: #015bd9;
  border: none;
  border-radius: 4px;
  padding: 0.8rem 1.6rem;
  color: rgba(255, 255, 255, 0.87);
}

.login_form-submit:hover {
  background-color: #0047b2;
}

.login_lightbox-login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  row-gap: 2rem;
}

.login_lightbox-button {
  width: 100%;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.32);
  vertical-align: middle;
  padding: 0.8rem 1.6rem;
  background-color: #f6f7f8;
}

#lbxLogin {
  text-decoration: none;
  color: black;
}

#lbxLogin:hover {
  background-color: #e9ecef;
}

.login_lightbox-button span {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
}

.login_lightbox-info {
  display: block;
  text-align: center;
}

.login_divider {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
  color: rgba(144, 149, 157, 1);
}

.login_divider::before,
.login_divider::after {
  content: "";
  position: absolute;
  width: 25%;
  border-bottom: 1px solid rgba(144, 149, 157, 0.25);
  top: 50%;
}

.login_divider::before {
  left: 0;
}

.login_divider::after {
  right: 0;
}

@media (max-width: 480px) {
  body {
    overflow-y: scroll !important;
  }

  .login_container {
    width: 100vw;
  }

  .login_background-img {
    position: fixed;
    width: 100%;
    opacity: 0.15;
    top: 0;
    background-image: url(/Images/logon-background.png);
    background-size: 100% 100%;
    background-position: 0 0;
  }

  .login_background-img::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(68, 68, 68, 0.88) 70%
    );
    height: 100%;
    width: 100%;
    z-index: -1;
  }

  .login_form-container {
    z-index: 1;
    width: 100%;
    padding: 4rem 2rem;
    height: 100%;
    align-items: center;
    row-gap: 10%;
    background-color: transparent;
  }

  .login_logo {
    width: 40%;
    margin-top: 3rem;
  }

  .login_titles {
    display: none;
  }

  .login_form-group {
    width: 95%;
    row-gap: 3rem;
    padding-bottom: 3rem;
  }

  .login_form {
    row-gap: 2.5rem;
  }

  .login_form-container hr {
    display: none;
  }

  .login_input-group label {
    font-size: 1.6rem;
  }

  .login_input-container {
    height: 4rem;
  }

  .login_input-container input {
    height: 100%;
    padding-left: 0.7rem;
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.38);
  }

  .login_input-container input:focus {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.38);
  }

  .login_input-container span {
    top: 25%;
    right: 3%;
  }

  .login_input-validation {
    font-size: 1.6rem;
  }

  .login_form-options {
    font-size: 1.6rem;
  }

  .login_form-submit {
    height: 4rem;
    font-size: 1.8rem;
  }

  .login_lightbox-button {
    font-size: 1.8rem;
  }

  .login_lightbox-login {
    row-gap: 3rem;
  }

  .login_lightbox-info {
    font-size: 1.6rem;
  }

  .login_divider {
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.6);
  }
}
