@font-face {
    font-family: 'Jockeyone';
    src: url(../fonts/JockeyOne-Regular.ttf);
}
.login_flex{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}
.login_container{
    padding: 30px;
    background-color: white;
    border-radius: 20px;
    width: 600px;
}
.kop_inlog p{
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 0;
}
.gebruikersnaam{
    display: flex;
    flex-direction: column;
    font-size: 20px;
    
}
.wachtwoord{
    font-size: 20px;
    display: flex;
    flex-direction: column;
}
.gebruikersnaam input{
    background-color: #D9D9D9;
    height: 30px;
    border: none;
    border-radius: 8px;
    padding: 0 10px;
    font-family: 'Jockeyone';
    margin-top: 10px;
    margin-bottom: 10px;
}

.wachtwoord input{
    background-color: #D9D9D9;
    height: 30px;
    border: none;
    border-radius: 8px;
    padding: 0 10px;
    font-family: 'Jockeyone';
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Error styling for login fields */
.input-error {
    border: 1px solid #e74c3c !important;
    color: #e74c3c !important;
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.15);
    background-color: #fff6f6 !important;
}

.label-error {
    color: #e74c3c !important;
}



/* Verwijder autofill blauwe achtergrond */
.gebruikersnaam input:-webkit-autofill,
.gebruikersnaam input:-webkit-autofill:hover,
.gebruikersnaam input:-webkit-autofill:focus,
.gebruikersnaam input:-webkit-autofill:active,
.wachtwoord input:-webkit-autofill,
.wachtwoord input:-webkit-autofill:hover,
.wachtwoord input:-webkit-autofill:focus,
.wachtwoord input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #D9D9D9 inset !important;
    -webkit-text-fill-color: #000 !important;
    background-color: #D9D9D9 !important;
    border: none !important;
}

/* Voor andere browsers */
.gebruikersnaam input:autofill,
.wachtwoord input:autofill {
    background-color: #D9D9D9 !important;
    color: #000 !important;
}
.login_button button{
    width: 150px;
    height: 40px;
    color: white;
    background-color: black;
    border-radius: 12px;
    font-family: 'Jockeyone';
    font-size: 20px;
}
.login_button{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.registeren_container{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    font-size: 25px;
}

.registeren_container a {
    text-decoration: none;
   
}

.registeren_container a:hover {
    text-decoration: underline;
}
@media screen and (max-width: 690px) {
    .login_container{
        margin-left: 20px;
        margin-right: 20px;
    }
}
@media screen and (max-width: 460px) {
.registeren_container{
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
}