.final-cta {
  grid-template-columns: minmax(0, .9fr) minmax(430px, .7fr);
  align-items: start;
}

.demo-form-card {
  padding: 25px;
  border: 1px solid rgba(91, 145, 229, .28);
  border-radius: 17px;
  background: rgba(5, 13, 25, .8);
  box-shadow: 0 24px 65px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.demo-form {
  display: grid;
  gap: 16px;
}

.demo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: #adbed4;
  font-size: 11px;
  font-weight: 750;
}

.demo-form-wide {
  grid-column: 1 / -1;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  border: 1px solid #263d5d;
  border-radius: 9px;
  background: #071321;
  color: #edf5ff;
  padding: 12px 13px;
  font: 500 12px Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  transition: border-color .2s, box-shadow .2s;
}

.demo-form textarea {
  resize: vertical;
  min-height: 106px;
  line-height: 1.55;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
  color: #536b8b;
}

.demo-form input:focus,
.demo-form textarea:focus {
  outline: 0;
  border-color: #3b7ee8;
  box-shadow: 0 0 0 3px rgba(50, 123, 245, .14);
}

.demo-consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 10px !important;
  color: #7f93af !important;
  font-size: 10px !important;
  line-height: 1.55;
}

.demo-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: #3478ff;
}

.demo-submit {
  width: 100%;
  cursor: pointer;
}

.demo-submit:disabled {
  cursor: wait;
  opacity: .7;
  transform: none;
}

.demo-message {
  min-height: 20px;
  margin: 0;
  text-align: center;
  font-size: 11px;
}

.demo-message.success {
  color: #4bdba7;
}

.demo-message.error {
  color: #ff8194;
}

.demo-login-link {
  text-align: center;
  color: #7f96b8 !important;
  font-size: 10px;
}

.demo-login-link:hover {
  color: #b9c9df !important;
}

.demo-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 900px) {
  .final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .demo-form-card {
    padding: 20px;
  }

  .demo-form-grid {
    grid-template-columns: 1fr;
  }
}
