body {
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.container {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 20px;

}

.uitleg {
    text-align: center;
    width: 100%;
    max-width: 400px;
}

form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

button {
    padding: 10px 10px;

    border: none;

    border-radius: 10px;

    background: black;

    color: white;

    font-size: 16px;

    cursor: pointer;

    transition: background 0.3s ease;
}

button:hover {
    background: #333;
}