:root {
  --main-color-blue: #203469;
  --main-color-white: #ffffff;
  --main-color-black: #000000;

  --text-size-14: 14px;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Arial", Helvetica, sans-serif;
  color: #000000;
  background-color: #203469;
  display: flex;
  flex-direction: column;
}

.main-content {flex: 1;}

.form-group {margin-bottom: 12px;}

label {
  display: block;
  font-size: var(--text-size-14);
  margin-bottom: 4px;
}

input,
select {
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  font-size: 14px;
}

.actions {
  margin-top: 16px;
  display: flex;
  gap: 8px;
}

button {
  cursor: pointer;
  border: 1px solid #203469;
  border-radius: 5px;
  background: #203469;
  padding: 5px 40px;
  color: #ffffff;
}

#previewSection {
  display: none;
}

#signatureWrapper {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 12px;
  background-color: #ffffff;
}

.message {
  margin-top: 8px;
  font-size: 13px;
  text-align: center;
}

.site-footer {
  background-color: #000000;
  color: #ededed;
  text-align: center;
  font-weight: 400;
  padding: 10px;
  font-size: 13px
}

.site-footer p {margin: 0;}
.site-footer a {text-decoration: none;}