#editor-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  margin: 0;
  padding: 0;
  align-items: center;
  font-family: 'Courier New', Courier, monospace;
}

#editor-form .label {
  display: block;
  margin-bottom: 0.5em;
}

input {
  display: block;
  width: 100%;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 1em;
}

textarea {
  display: block;
  width: 100%;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 1em;
  resize: vertical;
  height: 150px;
}

select {
  display: block;
  width: 100%;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 1em;
}

#clientId {
  width: 200px;
}

#clientSecret {
  width: 300px;
}

#layout {
  width: 200px;
}

#customTheme {
  height: 100px;
  width: 300px;
}

#inputProperties {
  width: 300px;
}

#outputProperties {
  width: 300px;
}

#submit {
  display: block;
  width: 50%;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 1em;
  background-color: #eee;
  cursor: pointer;
  margin: 1rem;
}