body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_bild_div {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.box_33 {
    height: fit-content;
    padding: 2%;
    box-shadow: #adadad 3px 3px;
    background-color: #2c2c2c;
    border-radius: 15px;
    margin: 0.3%;
    width: 20.4%;
}

.box_label {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: bolder;
    text-decoration: underline;
    color: white;
    user-select: none;
}

.box_input {
    display: block;
    background-color: #858585;
    color: white;
    font-weight: bolder;
    font-size: 19px;
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
}

.button {
    font-size: 20px;
    background-color: gray;
    border-radius: 25px;
    padding: 7px;
    font-weight: 900;
    cursor: pointer;
    margin-left: 2px;
    margin-right: 2px;
    border: 2px solid #343434;
    user-select: none;
    color: black;
    margin-top: 20px;
}

.error {
    font-size: 20px;
    color: red;
    text-align: center;
    margin-top: 10px;
}

@media only screen and (max-device-width: 480px) {
    .box_33 {
        width: 80%;
    }

    .box_input {
        font-size: 49px;
    }

    .button {
        font-size: 49px;
    }

    .error {
        font-size: 49px;
    }
	
	.label_eingeloggt_bleiben {
		font-size: 49px;
	}
}