a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid #D88321;
    outline-offset: 3px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #213B5E;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

main ul {
    list-style: none;
    padding-left: 0;
}

main li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

main li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 18px;
    height: 18px;
    background-image: url("/assets/img/arrow-right-short.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.container {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* ========================================
   LOGOS
   ======================================== */

.logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
    height:40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-left {
    justify-content: flex-start;
}

.logo-center {
    justify-content: center;
}

.logo-right {
    justify-content: flex-end;
}

.logo img {
    display: block;
    max-width: 100%;
    height: auto;
}


/* ========================================
   TEXTE
   ======================================== */

p {
    margin-top: 0;
    margin-bottom: 1.2em;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}


/* ========================================
   ÜBERSCHRIFTEN
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.6em;
    color: #213B5E;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 24px;
}

h4,
h5,
h6 {
    font-size: 22px;
}


/* ========================================
   LINKS
   ======================================== */

a {
    color: #213B5E;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: text-decoration-style 0.2s ease;
}

a:hover,
a:focus {
    text-decoration-style: dotted;
}


/* ========================================
   BUTTON
   ======================================== */

.btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #D88321;
    color: #FFFFFF;
    border: 2px solid #D88321;
    border-radius: 6px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.btn:hover,
.btn:focus {
    background-color: #213B5E;
    border-color: #213B5E;
    color: #FFFFFF;
    text-decoration: none;
}


/* ========================================
   BLAUER HINTERGRUND
   ======================================== */

.bg-blue {
    background-color: #213B5E;
    color: #FFFFFF;
}

.bg-blue h1,
.bg-blue h2,
.bg-blue h3,
.bg-blue h4,
.bg-blue h5,
.bg-blue h6,
.bg-blue p {
    color: #FFFFFF;
}

.bg-blue a {
    color: #FFFFFF;
}


/* ========================================
   BILD IM BLAUEN CONTAINER
   ======================================== */

.bg-blue img {
    display: block;
    width: 100%;
    height: auto;
}


/* ========================================
   FORMULAR
   ======================================== */

form {
    width: 100%;
}

form label {
    display: block;
    margin-bottom: 6px;
    color: #213B5E;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 10px 14px;
    background-color: #FFFFFF;
    color: #213B5E;
    border: 2px solid #213B5E;
    border-radius: 4px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
    border-color: #D88321;
    box-shadow: 0 0 0 2px rgba(216, 131, 33, 0.2);
}

form textarea {
    min-height: 140px;
    resize: vertical;
}

form select {
    cursor: pointer;
}


/* ========================================
   CHECKBOX
   ======================================== */

form input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
}


/* ========================================
   FORMULAR-BUTTON
   ======================================== */

form button,
form input[type="submit"],
form input[type="button"] {
    display: inline-block;
    padding: 10px 24px;
    background-color: #D88321;
    color: #FFFFFF;
    border: 2px solid #D88321;
    border-radius: 6px;
    font-family: inherit;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

form button:hover,
form button:focus,
form input[type="submit"]:hover,
form input[type="submit"]:focus,
form input[type="button"]:hover,
form input[type="button"]:focus {
    background-color: #213B5E;
    border-color: #213B5E;
    color: #FFFFFF;
}


/* ========================================
   HINWEISTEXT
   ======================================== */

.note {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.note p {
    font-size: 16px;
    line-height: 1.5;
}


/* ========================================
   FORMULAR-ABSTÄNDE
   ======================================== */

form .form-group,
form .form-row,
form .field {
    margin-bottom: 20px;
}


/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 640px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    body,
    p {
        font-size: 18px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 24px;
    }

    h4,
    h5,
    h6 {
        font-size: 22px;
    }

    .btn,
    form button,
    form input[type="submit"],
    form input[type="button"] {
        font-size: 22px;
    }
}
