/* ===== FORMULÄR ===== */
.bakgrund {
    max-width: 500px;
    margin: 30px auto;
    padding: 25px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bakgrund form {
    display: flex;
    flex-direction: column;
}

.bakgrund label {
    margin-top: 10px;
    font-weight: bold;
}

.bakgrund input,
.bakgrund select,
.bakgrund textarea {
    padding: 10px;
    margin-top: 5px;
}

.bakgrund button {
    margin-top: 20px;
    padding: 12px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
}

/* ===== FOOTER ===== */
div.container>footer {
    padding: 40px;
    background-color: white;
}

div.container>footer>div.footer {
    display: flex;
    align-items: center;
}

div.container>footer>div.footer>section {
    padding: 20px;
    width: 350px;
    text-align: center;
}