/* modal-form */

.modal-bgd {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(27 29 31 / 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.modal-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* width: 300px;
  height: 400px; */
}

.modal-form-container {
  background: #ffffff;
  padding: 32px 62px 50px 62px;
  position: relative;
  border-radius: 8px;
}

.form-logo {
  max-width: 100%;
  width: 100px;
  height: auto;
}

.modal-form-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #000000;
  margin: 32px 0 12px 0;
}

.modal-form-dscr {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 24px;
}

.modal-form-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.modal-field-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}

.modal-field-input {
  border: 1px solid #005bbb;
  box-sizing: border-box;
  border-radius: 8px;
  height: 48px;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  padding: 4px 8px;
}

.modal-form-btn {
  background: #f75023;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffff;
  cursor: pointer;
  border: 0;
  margin-top: 24px;
}

.close-btn {
  position: absolute;
  right: 28px;
  top: 13px;
  font-size: 25px;
  color: #1b1d1f;
  cursor: pointer;
  border: 0;
  background: none;
}

.modal-dscr {
  margin-bottom: 0;
}

.modal-active {
  opacity: 1;
  pointer-events: all;
}

.gus-anim {
  width: 500px;
  position: fixed;
  top: 0;
  bottom: 0;
  margin-bottom: auto;
  margin-top: auto;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 800px) {
  .modal-form-container {
    padding: 32px 42px 30px 42px;
    border-radius: 8px;
  }
  .form-logo {
    max-width: 100%;
    width: 80px;
    height: auto;
  }
  .modal-form-title {
    font-size: 20px;
    line-height: 20px;
    margin: 30px 0 12px 0;
  }
  .modal-form-dscr {
    line-height: 20px;
    margin-bottom: 20px;
  }
  .modal-form-field {
    width: 100%;
    margin-bottom: 10px;
  }
  .modal-field-name {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .modal-field-input {
    height: 38px;
  }
  .modal-form-btn {
    background: #f75023;
    border-radius: 8px;
    padding: 10px 20px;
    line-height: 20px;
    margin-top: 30px;
  }
}
