.request-service-form {
  margin-top: 32px;
  max-width: 720px;
}

.request-service-form form {
  display: grid;
  gap: 18px;
}

.request-service-form .form-row {
  display: grid;
  gap: 8px;
}

.request-service-form label {
  font-weight: 600;
  color: #1d3557;
}

.request-service-form label span {
  color: #d94141;
}

.request-service-form input,
.request-service-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d7dce5;
  border-radius: 10px;
  font: inherit;
  color: #1d3557;
  background: #fff;
  box-sizing: border-box;
}

.request-service-form input:focus,
.request-service-form textarea:focus {
  outline: none;
  border-color: #1d4a89;
}

.request-service-form textarea {
  resize: vertical;
  min-height: 140px;
}

.request-service-form button[type="submit"] {
  width: fit-content;
  min-width: 180px;
}