/* Allgemeine Stile */


.container {
    background-color: #222;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 90%;
    margin: 2em auto;
}

h1 {
    text-align: center;
    color: #ff0000;
    margin-bottom: 1em;
}

form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1em; 
}

label {
    margin-bottom: 0.5em;
    font-weight: bold;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    padding: 0.7em;
    margin-bottom: 1em;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 1em;
    width: 100%; 
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
    outline: none;
    border: 1px solid #ff0000;
    background-color: #444;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder {
    color: #999;
}

input[type="submit"] {
    padding: 0.7em;
    border: none;
    border-radius: 5px;
    background-color: #ff0000;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #cc0000;
}


.message {
    margin-bottom: 1em;
    padding: 1em;
    background-color: #333;
    border-left: 5px solid #ff0000;
    border-radius: 5px;
}



