@import "https://fonts.googleapis.com/css?family=Roboto+Condensed|Roboto:300,400,500,700&display=swap";

/* src/style.css */
body {
  font-family: Roboto, sans-serif;
  line-height: 1.5;
  color: rgb(85, 100, 104);
  margin: 0 auto;
  padding: 20px;
}
p {
  margin-bottom: 5px;
}
.bold {
  font-weight: bold;
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.error {
  color: red;
  font-weight: bold;
}
button {
  padding: 10px 20px;
  background-color: rgb(0, 190, 240);
  color: #fff;
  border: none;
  cursor: pointer;
  margin: 16px 0;
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  border-radius: 20px;
  width: 100%;
}
button:hover {
  background-color: rgb(0, 149, 189);
}
button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.top-bar {
  justify-content: center;
  height: 100px;
  display: flex;
  box-shadow: 0 1px 0px #0000001a, 0 1px 2px -1px #0000001a;
}
.centered {
  width: 560px;
  max-width: 100%;
  text-align: left;
  flex-direction: column;
  flex: 1;
  margin: 40px auto;
}
.message {
  display: none;
}
.content {
  display: none;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 560px;
}
.top-bar-logo {
  align-items: center;
  display: flex;
}
.top-bar-logo img {
  padding-right: 20px;
  border-right: 1px solid lightgrey;
}
.top-bar-logo h2 {
  padding-left: 20px;
  color: rgb(0, 190, 240);
}
p.message {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.consent {
  display: flex;
  flex-direction: row;
  margin-top: 16px;
}
input:focus {
  outline: none;
  border-color: #00bef0;
}
input[type=checkbox] {
  display: inline-block;
  cursor: pointer;
  height: 16px;
  width: 16px;
  border: 2px solid;
  margin-right: 10px;
  border-radius: 2px;
  position: relative;
  top: 2px;
  background-color: #0095bd;
}
input[type=checkbox]:hover {
  border-color: #0095bd;
}
input[type=checkbox]:checked {
  background-color: #0095bd;
  border-color: #0095bd;
}
.terms-form {
  margin-top: 1em;
}
.terms-agreement {
  vertical-align: middle;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-select {
  padding: 8px 30px 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  font-size: 14px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 1px) center;
  background-size: 24px;
}
.language-select:hover,
.language-select:focus {
  border-color: #888;
  outline: none;
}
