/* Reset standaard browser styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Algemene pagina styling */
body {
    background: #efefef;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

/* Hoofd container */
.container {
    width: 90%;
    max-width: 1400px;
    height: calc(100vh - 40px);
    margin: 20px auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

/* Formulier sectie */
.form-section {
    height: calc(100vh - 120px);
    padding: 20px 70px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Grote titel */
.form-section h1 {
    font-size: 52px;
    margin-bottom: 12px;
}

/* Kleine titel */
.form-section h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 18px;
}

/* Formulier */
form {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Input velden */
input,
select {
    width: 100%;
    border: none;
    border-bottom: 2px solid #777;
    padding: 6px 0;
    font-size: 18px;
    outline: none;
    background: transparent;
}

/* Placeholder tekst */
input::placeholder {
    color: #777;
}

/* Submit knop */
.submit-btn {
    width: fit-content;
    margin-top: 14px;
    background: black;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover effect knop */
.submit-btn:hover {
    background: #222;
}

/* Meldingen */
.success-message,
.error-message {
    margin-top: 18px;
    font-size: 17px;
}

/* Success melding */
.success-message {
    color: green;
}

/* Error melding */
.error-message {
    color: red;
}

/* Beschikbare plekken */
.plaatsen-box {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 600;
}

/* Rode teller wanneer bijna vol */
.plaatsen-rood {
    color: red;
}