*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    background-color:#000f26;
}
#willkommen {
    text-align: center;
    font-size: 30px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 20px;
    background-color: #000814;
    padding-top:0%;
    border: 1px solid black;
    padding-bottom: 10px;
    padding-top: 10px;
    
}
.login {
    text-align: center;
    font-size: 20px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
}
.login * {
    margin-top: 10px;
}
.login label {
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #d4d4d4;
}
.submitbutton{
    margin-bottom: 10px;
    color: #fff;
    line-height: inherit;
    cursor: pointer;
    background-color: #3898ec;
    border: 0;
    border-radius: 0;
    padding: 9px 15px;
    text-decoration: none;
    display: inline-block;
    background-clip: border-box;
    border-radius: 20px;
    width: 100%;
    height: 38px;
}
.textinput{
    font-size: 15px;
    color: #333;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 100%;
    height: 38px;
    margin-bottom: 10px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857;
    display: block;
    border-radius: 20px;
}
/* Styling für die Cookie-Abfrage */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: #222;
    color: white;
    text-align: center;
    display: flex; /* Flexbox aktivieren */
    flex-direction: column; /* Inhalte vertikal anordnen */
    justify-content: center; /* Zentrierung von oben und unten */
    align-items: center; /* Horizontale Zentrierung */
    padding: 0; /* Keine zusätzliche Polsterung */
}

#cookie-banner button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
}
#cookie-banner button:hover {
    background-color: #218838;
}
.submitbutton:disabled {
    background-color: gray;
    cursor: not-allowed;
}