html, body {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
body {
  font-family: 'Inter', Arial, sans-serif;
  color: #181e2a;
  font-size: 1.08em;
}
.embed-form-container {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  padding: 0;
  background: transparent;
  margin: 0 auto;
}
.embed-form-container h2 {
  font-size: 1.45em;
  font-weight: 700;
  margin: 0 0 0.5em 0;
  color: #181e2a;
  letter-spacing: -0.5px;
}
.embed-form-container form {
  margin: 0;
  padding: 0;
}
.embed-form-container label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.25em;
  color: #222;
  font-size: 1em;
}
.embed-form-container input,
.embed-form-container textarea,
.embed-form-container select {
  width: 100%;
  padding: 0.7em 1em;
  border: 1.5px solid #cfd8dc;
  border-radius: 6px;
  font-size: 1em;
  background: transparent;
  color: #181e2a;
  margin-bottom: 1.1em;
  box-sizing: border-box;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.embed-form-container input:focus,
.embed-form-container textarea:focus,
.embed-form-container select:focus {
  border-color: #1976d2;
  outline: none;
  box-shadow: 0 0 0 2px #1976d220;
}
.embed-form-container button {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.85em 1.7em;
  font-size: 1.08em;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.18s, background 0.18s, box-shadow 0.18s;
  margin-top: 0.2em;
  box-shadow: none;
  opacity: 1;
}
.embed-form-container button:hover,
.embed-form-container button:focus {
  opacity: 0.9;
}
.embed-form-container .embed-field-error {
  color: #d32f2f;
  font-size: 0.97em;
  display: block;
}
.embed-placeholder {
  color: #888;
  text-align: center;
  margin-top: 2em;
  font-size: 1.1em;
}
.embed-form-container textarea {
  min-height: 9.3em;
  resize: vertical;
}
.embed-form-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2em 1.2em;
}
@media (min-width: 541px) {
  .embed-form-fields {
    grid-template-columns: 1fr 1fr;
  }
  .embed-form-fields .embed-field-full {
    grid-column: 1 / -1;
  }
}
@media (max-width: 500px) {
  .embed-form-container h2 {
    font-size: 1.15em;
  }
  .embed-form-container input,
  .embed-form-container textarea,
  .embed-form-container select {
    font-size: 0.98em;
    padding: 0.7em 0.7em;
  }
  .embed-form-container button {
    font-size: 1em;
    padding: 0.8em 1.1em;
  }
}
.embed-field-container {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.embed-field-container input,
.embed-field-container textarea,
.embed-field-container select {
  margin-bottom: 0;
} 

#embedForm{
    display: flex;
  flex-direction: column;
  gap: 1.2em;
}

#embedForm > button{
    width: fit-content;
}