body {
    background-color: #E05306;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}


.banner {
    background-color: #E05306;
    padding: 20px;
    text-align: center;
}

.login-container,
.message-container {
    background-color: #FFF;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    /* Add this line to center it horizontally */
    margin-top: 20px;
    /* Adjust top margin as needed */
    box-sizing: border-box;
}

h2,
.messageTitle {
    text-align: center;
    color: #E05306;
}

input {
    width: 100%;
    padding: 10px 10px 10px 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #E05306;
    color: #fff;
    cursor: pointer;
}

.registerbtn {

    border: 1px gray solid;
    border-radius: 5px;
    margin: 2%;
    text-align: center;
    text-decoration: none;


}

.registerbtn {
    color: #E05306;
    text-decoration: none;
    border: 1px solid gray;
    border-radius: 5px;
    margin: 2%;
    text-align: center;
    transition: background-color 1s, color 1s;
    /* Add transitions */
}

.registerbtn:hover {
    background-color: #E05306;
    color: black;
}

.anmelden-button {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #E05306;
    color: #fff;
    cursor: pointer;
}



.anmelden-button:hover,
.linksenden-button:hover,
.reset-password-button:hover {
    background-color: #f0f0f0;
    /* Change background color on hover */
    color: black;
    /* Change text color on hover */
    transition: background-color 1s, color 1s;
    /* Add smooth transition effects */
}

/* Für Hlogin*/


.bild-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    /* Oder die Höhe, die du bevorzugst */
}

.bild-container img {
    width: auto;
    height: 100%;
    /* Damit das Bild die gesamte Höhe der .bild-container einnimmt */
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    /* Bring the image to the background */
}

/* Anmelden.php*/


#footer{
    margin-top:auto;
}

@media only screen and (max-width: 600px) {

    .login-container {
        width: 80%;
        
    margin-bottom: 50vh;
    }
    .message-container{
        width: 80%;
        
    margin-bottom: 50vh;
    }
    


}