* {
    margin: 0;
    padding: 0;
}


:root{
    --title-color: #1E1E1E;
}
body {
    background-color: #FFF5E5;
}


.register-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    background-color: #FF8732;
    height: 100%;
}



.register-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.register-right form {
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: center;
    gap: 5px;
}

.register {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    background-color: #FFF5E5;
}

.register-right input {
    width: 50%;
    height: 60px;
    border: none;
    padding-left: 10px;
    margin-top: 5px;
    border: black solid 1px;
    border-radius: 2px;
}

.register-right h1 {
    color: var(--title-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.register-right button {
    width: 51%;
    height: 60px;
    background-color: #FF8732;
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 45px;
}

.view p {
    font-size: 2rem;
    text-align: center;

}

#checkbox {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
    width: 50%;
    font-size: 0.9rem;
    height: 60px;
    /*background: #FFFFFF;*/
}

@media only screen and (max-width: 450px) {

    .register {
        margin-top: 80px;
        /* of iets als 100px als je header hoog is */
    }

    .register-left {
        display: none;
    }

    .register-right {
        width: 100vw;
    }

    .register-right form {
        width: 100vw;
    }

    .register-right button {
        margin-top: 5px;
    }


       .register-right form {
        align-items: center;
        margin-bottom: 10%;
    }

    .checkbox-container {
        width: 80%;
        flex-wrap: wrap;
    }

    .register-right input, .register-right button {
        width: 80%;
    }
}

.error {
    color: red;
    margin-bottom: 10px;
}
