.en, .de { display: none; }
.en:lang(en), .de:lang(de) { display: revert; }
*, *::before, *::after {
box-sizing: border-box;
}
:root {
color-scheme: light;
--c-page: #ffffff;
--c-text: #5f5e54;
--c-topbar: #5f5e54;
--c-box: #ebe7df;
--c-footer: #5f5e54;
}
@media (prefers-color-scheme: dark) {
:root:not([data-theme="light"]) {
color-scheme: dark;
--c-page: #101010;
--c-text: #d4d4d4;
--c-topbar: #2a2a2a;
--c-box: #1a1a1a;
--c-footer: #2a2a2a;
}
}
:root[data-theme="dark"] {
color-scheme: dark;
--c-page: #101010;
--c-text: #d4d4d4;
--c-topbar: #2a2a2a;
--c-box: #1a1a1a;
--c-footer: #2a2a2a;
}
html {
background-color: var(--c-page);
scrollbar-gutter: stable;
}
body {
font-family: Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
font-size: 16px;
line-height: 1.5;
color: var(--c-text);
font-weight: 400;
margin: 0 auto;
background-color: var(--c-page);
max-width: 1440px;
min-height: 100vh;
display: flex;
flex-direction: column;
}
a {
text-decoration: none;
color: #ff9b14;
}
a:hover, a:active, a:focus {
text-decoration: underline;
color: #e08100;
}
h1 {
font-size: 1.4em;
line-height: 1.3;
font-weight: 700;
}
h2 {
font-size: 1.2em;
line-height: 1.4;
font-weight: 600;
}
h3 {
font-size: 1.05em;
line-height: 1.4;
font-weight: 600;
}
h1, h2, h3, h4, h5, h6, p {
margin: 0 0 0.75em;
}
b, strong {
font-weight: 700;
}
img {
max-width: 100%;
height: auto;
}
ul, ol {
margin: 0 0 0.75em;
padding-left: 1.5em;
}
li {
margin-bottom: 0.25em;
}
.site-topbar {
background-color: var(--c-topbar);
height: 2rem;
flex-shrink: 0;
display: flex;
justify-content: flex-end;
align-items: center;
gap: 1.25rem;
padding: 0 max(0.8474576271%, 12px);
font-size: 0.8rem;
color: #fff;
}
.site-topbar button {
background: none;
border: 0;
padding: 0;
font: inherit;
color: inherit;
cursor: pointer;
}
.site-topbar-link {
color: inherit;
text-decoration: none;
}
.site-topbar-link:hover,
.site-topbar-link:focus {
text-decoration: underline;
}
.site-topbar button:hover,
.site-topbar button:focus {
text-decoration: underline;
}
.site-topbar-lang,
.site-topbar-theme {
position: relative;
display: flex;
align-items: stretch;
height: 100%;
}
.site-topbar-lang[hidden] {
display: none;
}
.lang-trigger,
.theme-trigger {
display: flex;
align-items: center;
gap: 2px;
}
.lang-trigger svg,
.theme-trigger svg {
display: block;
}
.lang-menu,
.theme-menu {
display: none;
position: absolute;
top: 100%;
right: 0;
z-index: 10;
min-width: 7em;
padding: 4px 0;
background-color: var(--c-topbar);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.site-topbar-lang:hover .lang-menu,
.site-topbar-lang:focus-within .lang-menu,
.site-topbar-lang.open .lang-menu,
.site-topbar-theme:hover .theme-menu,
.site-topbar-theme:focus-within .theme-menu,
.site-topbar-theme.open .theme-menu {
display: block;
}
.lang-menu button,
.theme-menu button {
display: block;
width: 100%;
text-align: left;
padding: 4px 12px;
}
.lang-menu button:hover,
.lang-menu button:focus,
.theme-menu button:hover,
.theme-menu button:focus {
background-color: rgba(255, 255, 255, 0.12);
text-decoration: none;
}
html:lang(de) .lang-menu button[data-lang="de"],
html:lang(en) .lang-menu button[data-lang="en"],
html:not([data-theme]) .theme-menu button[data-theme-choice="auto"],
html[data-theme="light"] .theme-menu button[data-theme-choice="light"],
html[data-theme="dark"] .theme-menu button[data-theme-choice="dark"] {
color: #ff9b14;
font-weight: 700;
}
.site-wrapper {
width: 100%;
max-width: 800px;
margin: 0 auto;
padding: 0 16px;
flex: 1 0 auto;
}
.site-header {
margin: 0.85rem 0;
padding: 0 max(0.8474576271%, 12px);
font-size: 1.19rem;
}
.site-header a {
display: inline-block;
}
.site-logo {
display: block;
fill: #ff9b14;
}
.site-header .site-logo {
width: 12em;
height: 3.049em;
}
.site-main {
background-color: var(--c-box);
padding: 24px 6%;
}
.site-main--article {
background-color: transparent;
padding: 24px 0;
}
.content-header {
margin-bottom: 1em;
}
.content-header h1,
.content-header h2 {
margin: 0;
}
.site-footer {
background-color: var(--c-footer);
color: #ebe7df;
margin-top: 24px;
padding: 20px 0;
font-size: 0.8em;
line-height: 1.6;
flex-shrink: 0;
}
.site-footer-inner {
padding: 0 4.375rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 12px;
}
.site-footer-logo .site-logo {
width: 12.3125rem;
height: 3.128rem;
}
.site-footer-links {
display: flex;
gap: 6px;
flex-wrap: wrap;
align-items: center;
}
.site-footer-links a {
color: #ebe7df;
text-decoration: none;
}
.site-footer-links a:hover,
.site-footer-links a:active,
.site-footer-links a:focus {
color: #fff;
text-decoration: underline;
}
.site-footer-links .sep {
color: #c3c1b5;
}
@media (max-width: 1432px) {
.site-header {
font-size: 1rem;
}
}
@media (max-width: 500px) {
.site-header .site-logo {
width: 9em;
height: 2.287em;
}
.site-footer-inner {
flex-direction: column;
align-items: flex-start;
padding: 0 16px;
}
}
.tou-content {
border: 1px solid #c3c1b5;
padding: 1em 1.25em;
margin: 1em 0;
}
.tou-content :first-child {
margin-top: 0;
}
.tou-content :last-child {
margin-bottom: 0;
}
li.logout {
line-height: 36px;
padding-left: 36px;
list-style: none;
}
li.logout.success {
background: url(../images/success-32x32.png) no-repeat left center;
}
li.logout.failure,
li.logout.na {
background: url(../images/failure-32x32.png) no-repeat left center;
}
.storage-loading {
display: flex;
align-items: center;
gap: 0.75em;
}
.storage-spinner {
width: 1.4em;
height: 1.4em;
border: 3px solid #c3c1b5;
border-top-color: #ff9b14;
border-radius: 50%;
animation: storage-spin 0.8s linear infinite;
flex-shrink: 0;
}
@keyframes storage-spin {
to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
.storage-spinner,
.is-busy::before { animation: none; }
}
.login-form {
max-width: 28em;
}
.login-form label {
display: block;
margin: 1em 0 0.25em;
font-weight: 600;
}
.login-form .label-hint {
font-weight: 400;
font-size: 0.85em;
}
.login-form input[type="text"],
.login-form input[type="password"],
.login-form select {
display: block;
width: 100%;
padding: 8px 12px;
font: inherit;
color: var(--c-text);
background-color: var(--c-page);
border: 1px solid #c3c1b5;
border-radius: 0;
}
.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus,
.login-form select:focus {
outline: 2px solid #ff9b14;
outline-offset: -1px;
}
.login-form .form-option {
margin-top: 0.75em;
}
.login-form .form-option label {
display: inline;
margin: 0;
font-weight: 400;
}
.login-form input[type="checkbox"] {
accent-color: #ff9b14;
margin-right: 0.35em;
}
button.form-button,
.login-form button,
form[name="fudispasskeys"] button {
display: inline-block;
margin-top: 1.25em;
padding: 0.6em 2.5em;
font: inherit;
font-weight: 600;
color: #fff;
background-color: #ff9b14;
border: 0;
border-radius: 0;
cursor: pointer;
}
button.form-button:hover,
button.form-button:focus,
.login-form button:hover,
.login-form button:focus,
form[name="fudispasskeys"] button:hover,
form[name="fudispasskeys"] button:focus {
background-color: #e08100;
}
button.button--secondary,
.login-form button.button--secondary {
color: var(--c-text);
background: none;
border: 2px solid #ff9b14;
padding: calc(0.6em - 2px) calc(2.5em - 2px);
}
button.button--secondary:hover,
button.button--secondary:focus,
.login-form button.button--secondary:hover,
.login-form button.button--secondary:focus {
color: #fff;
background-color: #ff9b14;
}
.button-row {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.button-row > button {
flex: 1 1 auto;
padding-left: 1.25em;
padding-right: 1.25em;
}
.button-row > button.button--secondary {
padding-left: calc(1.25em - 2px);
padding-right: calc(1.25em - 2px);
}
.is-busy {
pointer-events: none;
opacity: 0.85;
}
.is-busy::before {
content: "";
display: inline-block;
width: 1em;
height: 1em;
margin-right: 0.5em;
vertical-align: -0.15em;
border: 2px solid currentColor;
border-top-color: transparent;
border-radius: 50%;
animation: storage-spin 0.8s linear infinite;
}
.ar-table table {
width: 100%;
margin: 1em 0;
border-collapse: collapse;
}
.ar-table th {
text-align: left;
padding: 8px 10px;
border-bottom: 2px solid #ff9b14;
}
.ar-table td {
padding: 8px 10px;
vertical-align: top;
border-bottom: 1px solid #c3c1b5;
}
.ar-table td:nth-child(2) {
overflow-wrap: anywhere;
}
.ar-table .ar-check {
width: 2em;
}
.consent-options {
border: 0;
padding: 0;
margin: 1.5em 0 0;
}
.consent-options legend {
padding: 0;
margin-bottom: 0.5em;
}
.option-caption {
margin: 0.1em 0 0 1.7em;
}
.output-message {
padding: 10px 14px;
margin: 1em 0;
border-left: 4px solid #c3c1b5;
}
.output--error,
.form-error {
border-left-color: #c0392b;
background-color: rgba(192, 57, 43, 0.08);
}
.output--success {
border-left-color: #2e8540;
background-color: rgba(46, 133, 64, 0.08);
}
.login-columns {
display: flex;
flex-direction: column;
gap: 1em;
}
.login-main {
max-width: 28em;
}
.service-desc {
font-size: 0.9em;
}
.service-logo {
display: block;
max-width: 100%;
max-height: 6em;
width: auto;
}
@media (min-width: 700px) {
.login-columns {
flex-direction: row;
align-items: flex-start;
gap: 2.5em;
}
.login-main {
flex: 1 1 auto;
}
.service-branding {
flex: 0 1 10em;
order: 2;
display: flex;
justify-content: center;
}
}
.service-links {
font-size: 0.9em;
}
.service-links .sep {
color: #c3c1b5;
}
.service-list {
margin: 0.5em 0 1em;
}
.support-links {
margin-top: 2em;
padding-top: 1em;
border-top: 1px solid #c3c1b5;
font-size: 0.9em;
}