/* Container zentrieren */
.container {
    max-width: 600px;
    width: 100%;
    background: #6495ED;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Logo an die richtige Position */
#logo {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 120px;
    height: auto;
    max-width: 150px;
}

/* Einheitliches Form-Layout */
.form-group {
    display: flex;
    flex-direction: column;  /* Labels über Inputs */
    margin-bottom: 10px;
}

/* Einheitliche Eingabefelder */
input, textarea {
    width: 100%;  /* Alle Felder haben die gleiche Breite */
    max-width: 100%; /* Sicherstellen, dass sie nicht überlaufen */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Checkboxen */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Labels für Eingabefelder */
label {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Button */
button {
    width: 230px;
    padding: 12px;
    margin: 10px auto;
    background: green;
    color: white;
    border: none;
    font-size: 18px;
    border-radius: 5px;
}

/* Responsive Anpassungen für Mobile */
@media (max-width: 768px) {
    .container {
        max-width: 90%;
    }
    
    .form-group {
        flex-direction: column;
    }

    label {
        min-width: unset;
    }
}
