.login {
  display: flex;
  height: 100vh;
  width: 100%;
}

.login__container {
  flex: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.login__header,
.login__form {
  width: 60%;
  max-width: 350px;
}

.login__header-title {
  font-weight: 700;
  font-size: 2rem;
}

.login__header-img {
  width: 100%;
}

.login__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#kc-form-login,
#kc-reset-password-form,
#kc-register-form,
#kc-passwd-update-form,
#kc-update-profile-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.login__password-input {
  position: relative;
}

.login__show-password-btn {
  all: unset;
  position: absolute;
  height: var(--element-height);
  right: 10px;
  cursor: pointer;
}

.login__show-password-btn svg {
  height: 18px;
  width: 18px;
  transform: translateY(5%); 
}

.login__settings {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.login__signup {
  margin-top: 1.5rem;
}

.login__bkg {
  flex: 1;
  background-image: url(../img/bkg.png);
  background-size: cover;
}

.form-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .login__bkg {
    display: none;
  }
}

@media (max-width: 640px) {
  .login__header, 
  .login__form {
    width: 75%;
}
}

@media (max-width: 480px) {
  .login__header, 
  .login__form {
    width: 80%;
  }
}


.modal {
  display: none; 
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto; 
  padding: 20px;
  border: 1px solid #888;
  width: 80%; 
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-content p strong {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.modal-content p {
  margin-bottom: 10px;
}