/**
    Fonts
 */
/**
    Colors
 */
/* Font size */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 3.125rem;
  padding: 0.8125rem 1.125rem;
  border: 0;
  border-radius: 0.625rem;
  background-color: var(--button-bg, #121384);
  color: var(--button-text, #ffffff);
  font-size: 1.125rem;
  font-family: inherit;
  line-height: 1.5rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.button:hover, .button:focus, .button:focus-visible {
  background-color: var(--button-bg-hover, #000000);
  color: var(--button-text-hover, #ffffff);
}
.button i {
  flex: 0 0 auto;
  font-size: 1.125rem;
  line-height: 1;
}
.button.button--icon-only {
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
  padding: 0;
}
.button.button--icon-left {
  flex-direction: row;
}
.button.button--icon-right {
  flex-direction: row-reverse;
}
.button.button--hero {
  min-height: 3rem;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  white-space: normal;
}
.button.button--dark-blue {
  --button-bg: #121384;
  --button-text: #ffffff;
  --button-bg-hover: #000000;
  --button-text-hover: #ffffff;
}
.button.button--yellow {
  --button-bg: #ffe500;
  --button-text: #121384;
  --button-bg-hover: #ffffff;
  --button-text-hover: #121384;
}
.button.button--small {
  min-height: 1.875rem;
  padding: 0.3125rem 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.felogin {
  width: 100%;
  max-width: 30rem;
  padding: 2.5rem;
  border-radius: 0.625rem;
  background-color: #ffffff;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 768px) {
  .felogin {
    padding: 1.5625rem;
  }
}
.felogin .felogin__messages {
  margin-bottom: 1.5625rem;
}
.felogin .felogin__messages:empty {
  display: none;
}
.felogin .felogin__messages .typo3-messages,
.felogin .felogin__messages ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.felogin .felogin__messages .typo3-messages li:before,
.felogin .felogin__messages ul li:before {
  content: initial;
  color: initial;
  margin-left: 0;
  margin-right: 0;
}
.felogin .felogin__message-header {
  margin: 0 0 0.3125rem;
  font-size: 1.5rem;
  line-height: 1.8125rem;
  font-weight: bold;
  color: #121384;
}
.felogin .felogin__message-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5rem;
}
.felogin .felogin__errors {
  color: #c80000;
  font-size: 1rem;
  line-height: 1.375rem;
}
.felogin .felogin__errors ul {
  margin: 0.9375rem 0 0;
  padding: 0;
}
.felogin .felogin__errors ul ul {
  margin-top: 0;
}
.felogin .felogin__fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.felogin .felogin__title {
  display: block;
  margin: 0 0 1.5625rem;
  padding: 0;
  font-size: 1.8125rem;
  line-height: 2.1875rem;
  font-weight: bold;
  color: #121384;
}
@media only screen and (max-width: 768px) {
  .felogin .felogin__title {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}
.felogin .felogin__field {
  margin-bottom: 1.25rem;
}
.felogin .felogin__field.felogin__field--checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5625rem;
}
.felogin .felogin__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: bold;
  color: #121384;
}
.felogin .felogin__input {
  width: 100%;
  height: 3.125rem;
  padding: 0 1.125rem;
  border: 2px solid #121384;
  border-radius: 0.375rem;
  background-color: rgb(231.3, 231.4, 242.7);
  color: #000000;
  font-size: 1.125rem;
  font-family: inherit;
  transition: box-shadow 0.15s ease;
}
.felogin .felogin__input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(18, 19, 132, 0.2);
}
.felogin .felogin__input::-moz-placeholder {
  color: rgba(18, 19, 132, 0.4);
}
.felogin .felogin__input::placeholder {
  color: rgba(18, 19, 132, 0.4);
}
.felogin .felogin__value {
  display: flex;
  align-items: center;
  min-height: 3.125rem;
  padding: 0 1.125rem;
  border: 2px solid #121384;
  border-radius: 0.375rem;
  background-color: rgb(231.3, 231.4, 242.7);
  color: #000000;
  font-size: 1.125rem;
  word-break: break-word;
}
.felogin .felogin__checkbox {
  position: relative;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 1.375rem;
  width: 1.375rem;
  height: 1.375rem;
  border: 2px solid #121384;
  border-radius: 0.25rem;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}
.felogin .felogin__checkbox input[type=checkbox] {
  position: absolute;
  inset: -0.125rem;
  z-index: 1;
  width: calc(100% + 0.25rem);
  height: calc(100% + 0.25rem);
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.felogin .felogin__checkbox::after {
  content: "";
  pointer-events: none;
  width: 0.3125rem;
  height: 0.625rem;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg) translate(-0.0625rem, -0.0625rem);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.felogin .felogin__checkbox:hover {
  background: rgb(231.3, 231.4, 242.7);
}
.felogin .felogin__checkbox:has(input[type=checkbox]:checked) {
  background: #121384;
}
.felogin .felogin__checkbox:has(input[type=checkbox]:checked)::after {
  opacity: 1;
}
.felogin .felogin__checkbox:has(input[type=checkbox]:focus-visible) {
  box-shadow: 0 0 0 0.25rem rgba(18, 19, 132, 0.2);
}
.felogin .felogin__checkbox-label {
  flex: 1;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #000000;
  cursor: pointer;
}
.felogin .felogin__actions {
  margin-top: 1.875rem;
}
.felogin .felogin__submit {
  width: 100%;
}
.felogin .felogin__forgot {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #121384;
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}
.felogin .felogin__forgot:hover {
  color: #000000;
}
.felogin .felogin__requirements {
  margin-top: 1.5625rem;
  padding: 1.125rem;
  border-radius: 0.375rem;
  background-color: rgb(231.3, 231.4, 242.7);
}
.felogin .felogin__requirements-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: bold;
  color: #121384;
}
.felogin .felogin__requirements-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #000000;
}
.felogin .felogin__requirements-list li {
  margin-bottom: 0.25rem;
}
.felogin .felogin__requirements-list li:last-child {
  margin-bottom: 0;
}
.felogin .felogin-hidden {
  display: none;
}