* {
    box-sizing: border-box;
}

body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column; /* Macht Platz für vertikales Wachstum */
    align-items: center;
    justify-content: flex-start; 
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
select,
button {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: #333;
    color: #ffffff;
    font-size: 16px;
    transition: background-color 0.3s, border 0.3s;
}

input:focus,
select:focus {
    background-color: #444;
    border: 1px solid #007BFF;
    outline: none;
}

button {
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

select {
    appearance: none;
    background-color: #333;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M7 10l5 5 5-5H7z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
}

label {
    font-size: 13px;
    color: #ffffff;
    /* Textfarbe */
    margin-top: 5px;
    /* Abstand zwischen Label und Eingabefeld */
    text-align: left;
    /* Linksbündige Ausrichtung */
}
