.account {
  background-color: #e7d9d3;
  border: none;
}

.login-modal,
.register-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.5);
}

.login-modal__content,
.register-modal__content {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  border: 1px solid #EDEDF0;
  background: #F7EBE5;
}

.login-modal__content {
  width: 35rem;
  height: 31rem;
}

.register-modal__content {
  width: 46rem;
  height: 33rem;
}

.login-modal__close,
.register-modal__close {
  position: absolute;
  top: -1rem;
  right: -2.5rem;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.6);
  border: none;
  background: transparent;
}

.login-form,
.register-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.login-form__title,
.register-form__title {
  font-family: "Montserrat";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.login-form__inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.register-form__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.login-form__input {
  color: #292929;
  font-family: "Proxima Nova", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 370px;
  height: 50px;
}

.register-form__input {
  width: 267px;
  height: 35px;
}

.error-message {
  color: #E7426A;
  text-align: right;
  font-family: "Proxima Nova", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.login-modal__button,
.register-modal__button {
  border-radius: 3px;
  background: #E7426A;
  text-align: center;
  font-family: "Montserrat";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #FFF;
  width: 234px;
  height: 50px;
}

.login-modal__register {
  color: #292929;
  text-align: center;
  font-family: "Proxima Nova", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
  background-color: #F7EBE5;
  border: none;
}/*# sourceMappingURL=modal.css.map */