﻿
* { box-sizing:border-box; }


/* Wrapper */
.contact-wrapper {
    width:95%;
    max-width:700px;
    background:#fff;
    margin:30px auto;
    padding:30px;
    border-radius:15px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

/* Bevestiging */
.confirm-block {
    background:#fff;
    padding:20px;
    border-radius:12px;
    width:100%;
    max-width:100%;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

/* Nieuwe formulier layout */
.new-form {
    display:flex;
    flex-direction:column;
    gap:18px;
    width:100%;
}

.contact-title {
    color:#7c428f;
    margin-bottom:20px;
}

.contact-group {
    display:flex;
    flex-direction:column;
}


.contact-group label {
    font-weight:bold;
    margin-bottom:6px;
    color:#7c428f;
    background:#f4e7f4; /* licht paars */
    font-family: "Segoe UI", Tahoma, Geneva, sans-serif;
    padding:6px 10px;
    border-radius:6px;
    display:inline-block;
}

.contact-group input,
.contact-group select,
.contact-group textarea {
    width:100%;
    padding:10px;
    border-radius:8px;
    border:1px solid #ccc;
    font-size:1rem;
    font-family: "Segoe UI", Tahoma, Geneva, sans-serif;
}

.contact-submit input {
    width:100%;
    background:#7c428f;
    color:white;
    padding:14px;
    font-size:1.1rem;
    border:none;
    border-radius:10px;
    cursor:pointer;
}

.contact-submit input:hover:enabled {
    background:#9a64ab;
}

.contact-submit input:disabled {
    background:#bda7c6;
    cursor:not-allowed;
}

.return-btn {
    padding:10px 18px;
    background:#7c428f;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
}

@media(max-width:768px){
    .contact-wrapper {
        width:100%;
        max-width:100%;
        margin:0;
        padding:20px 14px;
        border-radius:0;
    }
}

