.scv-enquire-form {
  box-sizing: border-box;
  width: 100%;
  max-width: 400px;
  max-height: 100%;
  overflow: auto;
  padding: 4px 2px 12px;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  color: #414141;
}

.scv-enquire-form *,
.scv-enquire-form *::before,
.scv-enquire-form *::after {
  box-sizing: border-box;
}

.scv-enquire-form .scv-field {
  margin-bottom: 10px;
}

.scv-enquire-form label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #414141;
}

.scv-enquire-form label .req {
  color: #d63246;
  margin-left: 2px;
}

.scv-enquire-form input[type="text"],
.scv-enquire-form input[type="email"],
.scv-enquire-form input[type="tel"],
.scv-enquire-form select {
  width: 100%;
  border: 1px solid #d3dde1;
  border-radius: 3px;
  background: #fff;
  color: #34383a;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 12px;
  outline: none;
}

.scv-enquire-form input:focus,
.scv-enquire-form select:focus {
  border-color: #0197ec;
}

.scv-enquire-form .scv-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 8px;
  cursor: pointer;
}

.scv-enquire-form .scv-check input {
  margin-top: 2px;
  flex-shrink: 0;
}

.scv-enquire-form .scv-submit {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: #030f3f;
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  padding: 16px 24px;
  cursor: pointer;
}

.scv-enquire-form .scv-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.scv-enquire-form .scv-form-status {
  margin-top: 10px;
  font-size: 13px;
  min-height: 1.2em;
}

.scv-enquire-form .scv-form-status.is-error {
  color: #ff3c3c;
}

.scv-enquire-form .scv-form-status.is-success {
  color: #21b573;
}

.scv-enquire-form [hidden] {
  display: none !important;
}

@media (max-width: 600px) {
  .scv-enquire-form {
    max-width: 300px;
  }

  .scv-enquire-form input[type="text"],
  .scv-enquire-form input[type="email"],
  .scv-enquire-form input[type="tel"],
  .scv-enquire-form select {
    font-size: 15px;
    padding: 8px 10px;
  }

  .scv-enquire-form .scv-submit {
    font-size: 15px;
    padding: 14px 18px;
  }
}
