html {
    overflow: hidden;
}

.wrapper {
    width: 100%;
    height: 100%;
    background-color: white;
    background-image: url("/resources/grafik/bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

form {
    margin: 0px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #2f2f2f;
    transition: background-color 5000s ease-in-out 0s;
}

button:hover {
    cursor: pointer;
}

.logonContainer {
    width: 290px;
    height: auto;

    margin-left: calc(50% - 145px);
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;

    color: white;
    background-color: #f2f2f2;
    position: absolute;
    padding-top: 20px;
    -webkit-box-shadow: 0px 0px 55px 21px rgba(232,232,232,1);
    -moz-box-shadow: 0px 0px 55px 21px rgba(232,232,232,1);
    box-shadow: 0px 0px 55px 21px rgba(232,232,232,1);

    border-radius: 10px;

}

.logonContainer>input, .submitBTN {
    margin: auto;
    display: block;
    width: 200px;
    height: 40px;
    margin-bottom: 20px;
}

.logonContainer>input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #333;
    color: #333;
}

.submitBTN{
    margin-top: 30px;
    margin-bottom: 30px;
}


.logonContainer img {
    width: 100px;
    margin-bottom: 50px;
    margin-top: 40px;
    left: calc(50% - 50px);
    position: relative;
}

a {
    color: silver;
    font-family: Arial;
    font-size: 12px;
    left: 48px;
    position: relative;
    top: -10px;
    cursor: pointer;
}

p {
    color: black;
    font-family: Roboto;
    text-align: center;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

#loginError {
    color: #dd0a0a;
    font-size: 0.9em;
}

#footIcon {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 160px;
    opacity: 0.03;
}


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

    .wrapper {
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }

    .logonContainer {
        margin-left: 0;
        width: 40vw;
        padding: 100px;
        height: auto;
        border-radius: 2rem;
        display: flex;
        flex-direction: column;
        align-content: center;
        flex-wrap: nowrap;
        align-items: center;
    }

    .logonContainer>input, .submitBTN {
        width: 100%;
        height: 100px;
        margin-bottom: 20px;
        font-size: 35px;
    }

    input::placeholder {
      font-size: 25px !important;
    }

    .logonContainer img {
        width: 30vw;
        left: 0vw;
    }

    .logonContainer a {
        display: none;
    }
}
