* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #fff;
    padding: 0 20px 0 0;
}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: rgb(9, 76, 158, 1);
    background-image: url('../image/image_car.png');
    background-repeat: inherit;
    background-size: cover;
    height: 100%;
    width: 99%;
    color: #fff;
    margin: 0;
    user-select: none;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
}

input, button {
    width: 20vw;
    height: 40px;
    border-radius: 5px;
    border: none;
    margin: 5px;
    text-align: center;
    font-size: 20px;
}

input, button:hover {

    cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

button {
    background-color: #3F8AB0;
    color: #fff;
    font-size: small;
}

button:hover {
    background-color: #204d64;
}

/* #meldung {
    background-color: #fff;
    color: brown;
    margin: 5px;
    padding: 3px;
    border-radius: 5px;
    width: 15vw;
    text-align: center;
} */

header {
    position: fixed;
    top: 0px;
    background-color: #0F131F;
    color: #fff;
    box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.5);
    padding: 8px;
    width: 100%;
    z-index: 2;
}

footer {
    position: fixed;
    bottom: 0px;
    background-color: #0F131F;
    color: #fff;
    padding: 8px;
    text-align: center;
    width: 100%;
}

#formular2 {
    width: 20%;
}

section {
    text-align: center;
    background-color: #0e1621d4;
    padding: 8px;
    border-radius: 13px;
}

#messageScreen,
#mfa_messageScreen {
    display: none;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    z-index: 100;
}

#messageBox,
#mfa_messageBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #747474e6;
    color: #fff;
    box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 30px;
    text-align: center;

}

#messageBox,
#mfa_messageBox>button {

    border: none;
    border-radius: 5px;
    background: #8b293994;
    color: #fff;
    height: 50px;
    width: -webkit-fill-available;

}

#messageBox,
#mfa_messageBox>button:hover {

    cursor: pointer;
    background: #8b2939;
    color: #696969;
}

#messageBox {
    height: unset;
    color: #fff;
}

img {
    margin: 10px;
    width: 20%;
    min-width: 250px;
}

#mfa_message {
    display: none;
    background-color: #8e1e30;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
}

#btn-resetcode {
    background-color: #575757;
    color: #fff;
    font-size: small;
}

#btn-resetcode:hover {
    background-color: #7c0d0d;
}


@media screen and (max-width: 800px) {

    body {
        font-size: smaller;
    }

    footer {
        position: relative;
        top: 100px
    }

    input, button {
        width: 80vw;
        height: 40px;
        border-radius: 5px;
        border: none;
        margin: 5px;
        text-align: center;
        font-size: 20px;
    }

    h1 {
        font-size: small;
    }

}