body {
  background: #028090;
  background: linear-gradient(135deg, #028090 0%, #00a896 100%);
  margin: 0;
  display: grid;
  grid-template-rows: minmax(max-content, 1fr) min-content;
  min-height: 100vh;
  font-family: "Open Sans", sans-serif;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background-color: #05668D;
}
footer > p {
  margin: 0;
  font-size: small;
  color: white;
}

main {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  padding: 64px 32px;
  background: #028090;
  background: linear-gradient(135deg, #028090 0%, #00a896 100%);
}
main > section {
  background-color: #05668D;
  color: white;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  max-width: 1000px;
}
main > section > div {
  padding: 64px;
}
main > section > div.left > div.logo > img {
  width: 120px;
  height: auto;
}
main > section > div.left > div.logo > h1 {
  margin: 0;
  font-weight: normal;
  font-size: 3rem;
}
main > section > div.left > div.slogan > p {
  margin: 0;
  margin-top: 8px;
  font-size: 1rem;
}
main > section > div.right {
  background-color: white;
  color: black;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main > section > div.right > div.externals {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: stretch;
}
main > section > div.right > div.externals > button {
  background-color: transparent;
  border: 1px solid black;
  font-family: "Open Sans", sans-serif;
  padding: 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  gap: 4px;
}
main > section > div.right > div.externals > button > img {
  width: 24px;
  height: auto;
}
main > section > div.right > div.externals > button > img.spacer {
  visibility: hidden;
  user-select: none;
}
main > section > div.right > div.externals > button > span {
  font-size: 1rem;
}
main > section > div.right > div.externals > button:not(:disabled) {
  cursor: pointer;
}
main > section > div.right > div.externals > button:not(:disabled):hover {
  background-color: rgba(90, 90, 90, 0.082);
}
main > section > div.right > div.form > div.error {
  display: block;
  margin-bottom: 4px;
}
main > section > div.right > div.form > div.error > p {
  color: red;
  font-size: 0.875rem;
  margin: 0;
}
main > section > div.right > div.form > div.error.hidden {
  display: none;
}
main > section > div.right > div.form > div.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
main > section > div.right > div.form > div.field > p {
  margin: 0;
  font-size: 1.1rem;
}
main > section > div.right > div.form > div.field > input {
  font-size: 1rem;
  padding: 8px 12px;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  border-radius: 4px;
  border: 1px solid black;
}
main > section > div.right > div.form > div.field > input:focus {
  outline-color: #05668D;
}
main > section > div.right > div.form > div.action {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
}
main > section > div.right > div.form > div.action > button {
  background-color: transparent;
  border: 1px solid black;
  font-family: "Open Sans", sans-serif;
  padding: 8px;
  border-radius: 4px;
  font-size: 1rem;
}
main > section > div.right > div.form > div.action > button:not(:disabled) {
  cursor: pointer;
}
main > section > div.right > div.form > div.action > button:not(:disabled):hover {
  background-color: rgba(90, 90, 90, 0.082);
}
main > section > div.right > div.form > div.action > button.main {
  background-color: #05668D;
  border-width: 1px;
  border-color: #05668D;
  color: white;
}
main > section > div.right > div.form > div.action > button.main:not(:disabled):hover {
  background-color: #028090;
}
main > section > div.right > div.form > div.action > button.main:disabled {
  background-color: #e0e0e0;
  color: grey;
}

/*# sourceMappingURL=style.css.map */
