.home-form-section {
  padding: 70px 0;
  background: #f6f7fb;
}

.home-form-section .section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px;
}

.home-form-section .section-head h2 {
  color: #001676;
  font-size: 30px;
  margin-bottom: 8px;
  font-weight: 900;
}

.home-form-section .section-head p {
  color: #667085;
  font-weight: 600;
}

.home-form-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(15, 18, 34, 0.1);
  padding: 28px;
}

.home-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.home-field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.home-field label {
  font-size: 12px;
  font-weight: 900;
  color: #1f2a44;
}

.home-field input,
.home-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  outline: none;
  font-weight: 700;
  font-family: inherit;
  font-size: 14px;
}

.home-field input:focus,
.home-field select:focus {
  border-color: rgba(0, 22, 118, 0.28);
  box-shadow: 0 0 0 4px rgba(0, 22, 118, 0.08);
}

.home-form-actions {
  margin-top: 6px;
}

.home-form-actions .btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.home-form-actions .btn-primary {
  background: #001676;
  color: #fff;
}

@media (max-width: 600px) {
  .home-form-row {
    grid-template-columns: 1fr;
  }

  .home-form-card {
    padding: 20px;
  }
}
