.naseem-form__form {
  display: block;
}

.naseem-form__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 24px;
}

.naseem-form__item {
  grid-column: span var(--naseem-field-span, 12);
}

.naseem-form__label {
  display: inline-block;
  margin-bottom: 14px;
  color: #5f6472;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.3;
}

.naseem-form__control {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d7dce5;
  border-radius: 14px;
  background: #ffffff;
  color: #1f2937;
  font-size: 16px;
  padding: 12px 16px;
}

.naseem-form__control:focus,
.naseem-form__control:active,
.naseem-form__control:focus-visible {
  outline: none;
  border-color: #d7dce5;
  box-shadow: none;
}

.naseem-form__control[type="text"],
.naseem-form__control[type="email"],
.naseem-form__control[type="tel"],
.naseem-form__control select {
  min-height: 60px;
}

.naseem-form__control textarea {
  min-height: 180px;
  resize: vertical;
}

.naseem-form__submit {
  margin-top: 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  padding: 0 30px;
  background: #1d2ee6;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-transform: uppercase;
}

.naseem-form__submit-icon {
  width: 58px;
  height: 58px;
  margin-left: 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1d2ee6;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  flex: 0 0 58px;
}

.naseem-form__submit-icon svg {
  width: 20px;
  height: 20px;
}

.naseem-form__message {
  margin-top: 10px;
  font-size: 14px;
}

@media (max-width: 767px) {
  .naseem-form__item {
    grid-column: span 12;
  }

  .naseem-form__label {
    font-size: 22px;
  }
}

.naseem-form__message.is-success {
  color: #0f9d58;
}

.naseem-form__message.is-error {
  color: #d93025;
}
