* {
  box-sizing: border-box;
}

.forms, .buttons {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}



.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.75);
  display: none;
}

.modal__title {
  text-align: center;
}

.form__title {
  display: none;
}

.form__fields {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  width: 100%;
}

.modal_active {
  display: block;
  z-index: 5;
}

.modal__container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__wrapper {
  padding: 20px;
  margin: 15px;
  min-width: 280px;
  background-color: #FFF;
box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.10);
}

.form__button {
  border: 0;
  cursor: pointer;
}

.modal__close {
  text-align: right;
  font-size: 0.8rem;
  cursor: pointer;
}

.modal__heading {
  padding: 20px 0 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.modal input {
  padding: 10px;
}

.form__fields label {
  font-size: 14px;
}

.form__submit {
  text-align: center;
}
