/* libs/mcae-forms/src/lib/sirius.form.scss */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
html,
body {
  padding: 0;
  margin: 0;
}
body {
  color: #002b39;
  display: flex;
  font-family: Roboto Flex, sans-serif;
  font-size: 1rem;
  font-synthesis: none;
  font-variation-settings: "opsz" 16, "GRAD" 0;
  font-weight: 300;
  letter-spacing: 0.0025rem;
  line-height: 1.5;
  padding: 0.1rem;
  text-rendering: optimizeLegibility;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.18;
}
h2 {
  font-size: 2.25rem;
  line-height: 1.21;
}
a {
  color: #3e769b;
  text-decoration: underline;
  transition: color 0.1s ease-in-out;
}
a:visited {
  color: #3e769b;
}
a:hover {
  color: #265d82;
  text-decoration: none;
}
a:focus {
  color: #56a0d3;
  outline: 0;
  text-decoration: underline;
}
a:active {
  color: #002b39;
}
sirius-ce-form {
  display: block;
}
.info-bubble {
  color: #002b39;
  background-color: #ebe9e3;
  padding: 0.5rem 2rem;
  margin: 0 auto 8px;
  max-width: fit-content;
  border-radius: 8px;
}
.form-content {
  padding: 1rem;
}
.form-content:empty {
  display: none;
}
#container {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
#form,
#message {
  height: 100%;
  opacity: 1;
  padding: 0 4px;
  transition: opacity 0.3s 0.1s ease-in;
  width: 100%;
}
#form.hidden,
#message.hidden {
  opacity: 0;
}
#recaptcha {
  margin-top: 1rem;
}
@media screen and (max-width: 480px) {
  #recaptcha {
    transform: scale(0.91);
    transform-origin: bottom right;
  }
}
div:has(div iframe[src*="https://www.google.com/recaptcha/api2/bframe"]) {
  left: auto !important;
  right: 11px !important;
  transform-origin: bottom right;
}
@media screen and (max-width: 480px) {
  div:has(div iframe[src*="https://www.google.com/recaptcha/api2/bframe"]) {
    box-sizing: content-box;
    right: 12px !important;
    transform: scale(0.8);
  }
  div:has(div iframe[src*="https://www.google.com/recaptcha/api2/bframe"]) > div {
    border: 1px solid #999;
    border-right: 2px solid #999;
    box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.2);
  }
}
#spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#spinner::after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 4px solid #3e769b;
  border-color: #3e769b transparent;
  animation: spinner 1.2s linear infinite;
  margin: 0 auto;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
