.add-school-form {
  padding: 40px 0; 
}

.btn-field-submit p {
  margin: 0;
}

form .btn {
  cursor: pointer;
  margin-top: 40px;
}

.add-school-form__title {
  color: var(--black, #1D1D1D);
  font-family: "Helvetica Neue";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; 
  margin: 0 0 12px;
}

.add-school-form__subtitle {
  color: var(--Black, #1D1D1D);
  font-family: "Helvetica Neue";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 133.333%;
  margin: 0;
}

form {
  margin-top: 40px;
}

.form-field,
.field-group {
  position: relative;
}

.form-field {
  margin-bottom: 16px;
}

.field-group {
  display: flex;
  gap: 24px;
}

.field-group .form-field {
  width: 50%;
}

.form-field select,
.form-field input {
  width: 100%;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  height: 44px;
  font-size: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='8' viewBox='0 0 16 8' fill='none'><path d='M15 1L8 7L1 1' stroke='%238E8E8E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat right 14px center; 
  background-size: 14px 7px;
}

.form-field select,
.form-field input {
  height: 60px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(1, 1, 1, 0.40);
  background-color: white;
  margin-top: 8px;
  color: var(--black, #1D1D1D);
  font-family: "Helvetica Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.form-field input::placeholder {
  color: #939393;
  font-family: "Helvetica Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.form-field label {
  color: var(--black, #1D1D1D);
  font-family: "Helvetica Neue";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}


@media screen and (max-width: 767px) {
  .field-group {
    flex-wrap: wrap;
    gap: 0;
  }

  .field-group .form-field {
    width: 100%;

  }

  form .btn {
    width: 100%;
  }
}


.success-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.57);
  backdrop-filter: blur(32.349998474121094px);
  z-index: 999;
}

.success-modal--open {
  display: flex;
}

.success-modal__card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 410px;
  width: calc(100% - 32px);
  text-align: center;
}

.success-modal__icon img {
  width: 80px;
  height: 80px;
}

.success-modal__title {
  color: var(--black, #1D1D1D);
  font-family: "Helvetica Neue";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 20px 0;
}

.success-modal__text {
  color: var(--black, #1D1D1D);
  font-family: "Helvetica Neue";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}

.success-modal__card .btn {
  margin-top: 20px;
}
