.td-form-wrap {
  max-width: 560px;
}
.td-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.td-field-full {
  grid-column: 1 / -1;
}
.td-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #123C42;
}
.td-field input,
.td-field select,
.td-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #D8CBB3;
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  color: #16211F;
}
.td-field input:focus,
.td-field select:focus,
.td-field textarea:focus {
  outline: 2px solid #123C42;
  outline-offset: 1px;
}
.td-submit {
  grid-column: 1 / -1;
  background: #C97B2E;
  color: #123C42;
  font-weight: 600;
  border: none;
  padding: 14px 24px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 15px;
}
.td-submit:hover {
  opacity: 0.9;
}
.td-hp-field {
  position: absolute;
  left: -9999px;
}
.td-alert {
  grid-column: 1 / -1;
  padding: 14px 18px;
  border-radius: 2px;
  margin-bottom: 20px;
  font-size: 14px;
}
.td-alert-success {
  background: #E1F5EE;
  color: #085041;
}
.td-alert-error {
  background: #FCEBEB;
  color: #791F1F;
}
.td-badge {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.td-badge-pendiente {
  background: #FAEEDA;
  color: #854F0B;
}
.td-badge-confirmado {
  background: #EAF3DE;
  color: #3B6D11;
}
.td-badge-cancelado {
  background: #FCEBEB;
  color: #791F1F;
}
@media (max-width: 600px) {
  .td-form {
    grid-template-columns: 1fr;
  }
}
