.modal {
  top: 0;
  z-index: 5200;
  position: fixed;
  background: rgba(0, 0, 0, 0.7490196078);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__container {
  gap: 30px;
  padding: 40px;
  width: 380px;
  justify-content: center;
  align-items: center;
  height: 360px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  background: #151515;
}
.modal__header {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.modal__header p {
  color: #FFF;
  /* 24px/bold */
  font-family: Inter Tight;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
}
.modal__header img {
  cursor: pointer;
}
.modal__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal__input-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal__input-wrap p {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
.modal__input-wrap input {
  width: calc(100% - 10px);
  height: 47px;
  border-radius: 8px;
  background: #1B1B1B;
  padding-left: 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.modal__input-wrap input::placeholder {
  color: #5F5F5F;
  /* 14px/semibold */
  font-family: Inter Tight;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
.modal__input-wrap button {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #D73636;
  border-radius: 8px;
  width: 100%;
  height: 49px;
  color: white;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 700px) {
  .modal__container {
    margin-right: 20px;
    margin-left: 20px;
    padding: 30px;
  }
  .modal__header p {
    font-size: 20px;
  }
}

/*# sourceMappingURL=modal.css.map */
