* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

body {
  font-family: Verdana, sans-serif;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: #585858;
  display: flex;
  padding: 12px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
button
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.container {
  grid-template-columns: 1fr 1fr;
  background: #fff;
  display: grid;
  padding: 20px;
  gap: 0 16px;
}

.container h1 {
  text-align: center;
  font-size: 26px;
}

.container h2 {
  font-size: 20px;
}

.container .text {
  font-size: 14px;
}

h1.title {
  grid-column: 1 / -1;
}

.flex-col-container {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
}

.triballat-logo {
  align-self: center;
  width: 240px;
  max-width: 100%;
  height: auto;
}

.lang-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
.lang-button {
  cursor: pointer;
  text-transform: uppercase;
}

.lang-button.active {
  cursor: default;
  font-weight: bold;
}

.information-form {
  display: grid;
  gap: 10px;
  grid-template-columns: 120px 1fr;
  align-items: center;
  max-width: 420px;
  margin: 0 auto;
  font-size: 14px;
}

.information-form label {
  min-width: max-content;
  /* Automatically adjusts to the width of the widest label */
  text-align: right;
}

.information-form label::after {
  content: '*';
  color: transparent;
}

.information-form label.required-field::after {
  content: '*';
  color: red;
}

.information-form input,
.information-form select {
  box-sizing: border-box;
  width: 100%;
}

button,
.information-form input[type="submit"] {
  transition: all 0.15s;
  background: #ffac37;
  grid-column: 1 / -1;
  align-self: center;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
  display: block;
  padding: 5px;
  width: 100%;
  color: #fff;
  border: 0;
}

button:hover,
.information-form input[type="submit"]:hover {
  background: #e88f00;
}

button[data-ok="1"],
.information-form input[type="submit"][data-ok="1"] {
  background: #CDE1DC;
  color: #003932;
}

iframe {
  border: 2px solid #aaa;
  display: block;
  max-width: 100%;
  height: 416px;
  width: 400px;
}

p.field-description {
  font-size: 12px;
  color: #555;
  margin: 0 0 8px 0;
  line-height: 1;
}