.register_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.register_conainer {
    padding: 30px;
    background-color: white;
    border-radius: 20px;
    width: 600px;
    font-family: 'Jockeyone', Arial, sans-serif;
}

.kop_register p {
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
}

.voor_achternaam {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.voornaam,
.achternaam {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.email {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.inlog_gebruiker_wachtwoord {
    margin-bottom: 15px;
}

.gebruikersnaam {
    display: flex;
    flex-direction: column;
}

.wachtwoord_herhaal {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.wachtwoord,
.herhaal_wachtwoord {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Input styling */
input[type="text"],
input[type="email"],
input[type="password"] {
    background-color: #D9D9D9;
    height: 40px;
    border: none;
    border-radius: 8px;
    padding: 0 15px;
    font-family: 'Jockeyone';
    margin-top: 8px;
    font-size: 16px;
}

label {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

/* Progressiebar styling */
.progressiebar {
    margin-bottom: 20px;
}

.wachtwoord-sterkte label {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.progress-container {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 5px;
}

.sterkte-tekst {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

/* Register button */
.register_button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.register_button button {
    width: 200px;
    height: 45px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Jockeyone';
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.register_button button:hover {
    background-color: #218838;
}

/* Autofill styling */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px #D9D9D9 inset !important;
    -webkit-text-fill-color: #000 !important;
}

@media screen and (max-width: 700px) {
    .register_flex {
        margin-left: 10px;
        margin-right: 10px;
    }

    .wachtwoord_herhaal {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
        flex-direction: column;
    }
    .wachtwoord-sterkte{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .progress-container {
        width: 50%;
    }

}
@media screen and (max-width: 700px) {
    .voornaam input{
        width: 80%;
    }
    .achternaam  input{
        width: 80%;
    }
}
@media screen and (max-width: 400px) {
.voornaam input{
        width: 70%;
    }
    .achternaam  input{
        width: 70%;
    }
}