.lc-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.lc-alert {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}

.lc-alert--success {
  background: #e6f7ee;
  color: #1b7a43;
  border: 1px solid #b7e4c9;
}

.lc-alert--error {
  background: #fdecec;
  color: #b3261e;
  border: 1px solid #f5c2c0;
}

.lc-alert--error ul {
  margin: 0;
  padding-left: 18px;
}

.lc-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 20px;
}

.lc-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.lc-field--full {
  grid-column: 1 / -1;
}

.lc-field label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  text-align: left !important;
}

.lc-field label .req {
  color: #d4202c;
}

.lc-field input,
.lc-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0e7ef;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: #0e2236;
  background: #fbfbfc;
}

.lc-field textarea {
  resize: vertical;
}

.lc-field input:focus,
.lc-field textarea:focus {
  outline: none;
  border-color: #20479b;
  box-shadow: 0 0 0 3px rgba(32, 71, 155, 0.12);
  background: #fff;
}

.lc-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lc-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  background: #20479b;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.lc-submit:hover {
  background: #1a3a80;
}

.lc-submit.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.lc-submit.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lc-spin 0.7s linear infinite;
}

@keyframes lc-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .lc-field-grid {
    grid-template-columns: 1fr;
  }
}
