.simple-contact-form {
  box-sizing: border-box;
  margin: 0;
  padding: 28px 34px;
  background: #f7f9fc;
  border: 1px solid #d9e1ec;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.simple-contact-form .bd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.simple-contact-form .bd-field {
  width: 100%;
}

.simple-contact-form input {
  width: 100%;
  box-sizing: border-box;
  display: block;
  padding: 15px 18px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  border-radius: 15px;
  font-size: 16px;
  margin: 0;
}

.simple-contact-form input::placeholder {
  color: #526783;
}

.simple-contact-form input:focus {
  border-color: #0ea5e9;
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.16);
}

.simple-contact-form .bd-full {
  margin-bottom: 24px;
}

.simple-contact-form .bd-submit input {
  width: auto !important;
  padding: 15px 32px !important;
  background: #0ea5e9 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  cursor: pointer;
}

.simple-contact-form .bd-submit input:hover {
  background: #0284c7 !important;
}

@media (max-width: 700px) {
  .simple-contact-form .bd-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .simple-contact-form {
    padding: 24px;
  }
}
.bd-light-form {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 34px;
  background: #f7f9fc;
  border: 1px solid #d9e1ec;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.bd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.bd-field {
  width: 100%;
}

.bd-light-form .bd-field input,
.bd-light-form .bd-field textarea {
  width: 100%;
  box-sizing: border-box;
  display: block;
  padding: 15px 18px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  border-radius: 15px;
  font-size: 16px;
  margin: 0;
}

.bd-message {
  margin-bottom: 24px;
}

.bd-light-form textarea {
  min-height: 150px;
  resize: vertical;
}

.bd-light-form input::placeholder,
.bd-light-form textarea::placeholder {
  color: #526783;
}

.bd-light-form input:focus,
.bd-light-form textarea:focus {
  border-color: #0ea5e9;
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.16);
}

.bd-submit input {
  width: auto !important;
  padding: 15px 32px !important;
  background: #0ea5e9 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  cursor: pointer;
}

.bd-submit input:hover {
  background: #0284c7 !important;
}

@media (max-width: 700px) {
  .bd-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .bd-light-form {
    padding: 24px;
  }
}
.bd-light-form .bd-field select {
  width: 100%;
  box-sizing: border-box;
  display: block;
  padding: 15px 18px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  border-radius: 15px;
  font-size: 16px;
  margin: 0 0 22px 0;
}