body {
    background-color: #EBE8E6;
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100vh; /* Zorgt dat de website altijd de volledige hoogte vult */
}

.left-container, .right-container {
    padding: 20px;
    box-sizing: border-box;
}

.left-container, .right-container {
    width: 50%;
}

.left-container {
    background-color: #EBE8E6;
}

.right-container {
    background-color: #EBE8E6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

input[type="text"] {
    display: block;
    margin: 10px auto;
    color: black;
    background-color: #EBE8E6;
    border: 1px solid black;
    border-radius: 24px;
    padding: 4px 8px;
    font-size: 20px;
    text-align: center;
    width: 80%; /* Zorgt ervoor dat het invoerveld mee schaalt */
    max-width: 500px; /* Limiteert de breedte op grote schermen */
}

input[type="text"]:focus {
    outline: 2px solid black;
}

.center {
    margin-top: 50px;
    text-align: center;
}

/* Media queries voor kleinere schermen */
@media (max-width: 768px) {
    body {
        flex-direction: column; /* Containers worden gestapeld */
    }

    .left-container, .right-container {
        width: 100%; /* Neemt de volledige breedte in */
    }

    input[type="text"] {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    input[type="text"] {
        font-size: 16px;
        padding: 4px;
    }
}
