#custom-registration-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
	color:white;
}

#custom-registration-form .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#custom-registration-form label {
    margin-bottom: 5px;
}

#custom-registration-form input, #custom-registration-form select, #custom-registration-form textarea {
    padding: 10px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

#custom-registration-form input[type="submit"] {
    grid-column: 1 / -1;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

#custom-registration-form input[type="submit"]:hover {
    background-color: #45a049;
}

/* Zorg ervoor dat de velden maximale breedte innemen */
#custom-registration-form .form-group input,
#custom-registration-form .form-group select,
#custom-registration-form .form-group textarea {
    max-width: 98%;
}

/* Mobile specific styling */
@media (max-width: 768px) {
    #custom-registration-form {
			margin-left:3%;
	margin-right:3%;
        grid-template-columns: 1fr;
    }
}
