body {
    font-family: Arial, sans-serif;
    background-image: url('../bilder/pexels-codioful-7134999.jpg');
    margin: 0;
    text-align: center;
}

.kontakt-box {
    background-color: white;
    width: 350px;
    margin: 50px auto;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.kontakt-box h2 {
    margin-bottom: 15px;
}

.kontakt-info {
    margin-bottom: 20px;
    line-height: 1.6;
}

label {
    display: block;
    text-align: left;
    margin-top: 10px;
}

input,
textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

button {
    margin-top: 15px;
    padding: 10px;
    width: 100%;
    background-color: #6c53ea;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #5541c8;
}
legend {
    text-align: left;
}