*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
    --ff-main: "poppins", serif;
    --ff-accent: "anton", serif;
  }

body {
    width: 100%;
    min-height: 100dvh;
    font-family: var(--ff-main);
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    background-color: #F2F7F9;
    background-image: url(../assets/background.png);
    margin: 0;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    font-family: var(--ff-main);
    font-size: 14px;
    font-weight: 400;
    color: black;
}

.form-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 2rem 5rem;
}

.gegevens-section {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-family: var(--ff-main);
    font-size: 14px;
    font-weight: 400;
    color: black;
}

.datum-section {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: var(--ff-main);
    font-size: 14px;
    font-weight: 400;
    color: black;
}

.bouw-box-container {    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bouw-box-selectie {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

h1 {
    font-family: var(--ff-accent);
    font-size: 24px;
    font-weight: 400;
    color: #006291;
    text-align: center;
}

.datum-reserveer-container {
    display: flex;
    flex-direction: row;
}

.input-button {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.submit-button {
    width: 200px;
    height: 50px;
    border-radius: 50px;
    border: none;
    background-color: #89B15E;
    font-family: var(--ff-main);
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
}


