*                       { margin: 0; padding: 0; }
body                    { min-height: 100vh; font: 14px Helvetica,Arial,sans-serif; color: #333; background: #f0f3f4; padding: 80px 0; }
.messages               { margin: 0 auto; max-width: 360px; }
.messages li            { display: block; border-radius: 5px; line-height: 40px; margin-bottom: 10px; padding: 0 15px; color: #fff; }
.messages i             { display: inline-block; width: 20px; }
.messages .error        { background: rgb(255,73,96); }
.messages .notice       { background: rgb(85,163,245); }
.messages .success      { background: rgb(98,213,148); }

::placeholder           { color: #fff; }
h2                      { font-size: 20px; color: #fff; margin-bottom: 30px; }
.logo                   { text-align: center; padding-bottom: 30px; animation: logo 3s forwards; animation-delay: 500ms; opacity: 0; }
.logo span              { color: #fff; display: block; font-size: 20px; padding-top: 5px; }

.login-container { margin: 30px auto; text-align: center; border: 1px solid #ccc; padding: 30px; border-radius: 10px; background-color: #464c53;
                    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); width: 360px; box-sizing: border-box; }

.text {
    border-radius: 10px;
    width: 100%;
    line-height: 40px;
    font-size: 16px;
    padding: 0 15px;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.5);
    box-sizing: border-box;
    margin-bottom: 15px;
    outline: none;
}
.text:focus { background: rgba(255,255,255,0.2); }

button {
    border-radius: 10px;
    display: block;
    width: 100%;
    height: 40px;
    font-size: 16px;
    padding: 5px;
    margin: auto;
    background-color: #3093bf;
    color: white;
    border: none; /* Standard-Rahmen entfernen */
    cursor: pointer;
    text-transform: uppercase;
}

@keyframes logo {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
