* {
    margin: 0 auto;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.msg {
    margin: 1rem 0;
    padding: 1rem;
    background-color: lightblue;
    border-radius: 4px;
}

.contact {
    min-height: 100vh;
    background-image: url("../img/klanten/bart/WoutervanderSar_25010600-14.jpg");
    background-position: center;
    background-size: cover;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.contactCard {
    border-radius: 20px;
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(9px) saturate(180%);
    -webkit-backdrop-filter: blur(9px) saturate(180%);
    background-color: rgba(235, 235, 235, 0.60);
    border-radius: 12px;
    border: 4px solid rgba(255, 255, 255, 0.125);
    padding: 40px;
}

.contactNav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.contactNav h2 {
    font-family: "Rubik", sans-serif;
    cursor: pointer;
}

.contactNav h2.active {
    text-decoration: underline 3px solid #2c84ec;
    text-underline-offset: 8px;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 60%;
    font-size: medium;
}

input,
textarea {
    background-color: transparent;
    padding: 10px;
    border: 0;
    border-bottom: 1px solid black;
    color: black;
    font-size: medium;
    width: 100%;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

input[type="file"] {
    border: none;
    padding: 10px 0;
}

#button {
    margin-top: 20px;
}

#button input {
    background-color: #2c84ec;
    border: 0;
    color: white;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 5px;
    width: auto;
}

#button input:hover {
    background-color: #2470c7;
}

@media (max-width: 768px) {
    .contactCard {
        width: 90%;
    }

    .form-group {
        width: 100%;
    }
}