/* Start custom CSS *//* --- 1. DE BASIS KAART STIJL (Voor Login, Register & Wachtwoord Reset) --- */
/* We pakken hier specifiek de login, register en password forms */
body .um-login, 
body .um-register, 
body .um-password {
    max-width: 450px;        /* Mooie smalle kaart */
    margin: 40px auto;       /* Centreren op de pagina */
    padding: 40px;           /* Ruimte binnenin */
    background: #ffffff;     /* Witte achtergrond */
    border-radius: 12px;     /* Ronde hoeken */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Schaduw */
    border: 1px solid #f0f0f0;
}

/* --- 2. DE ACCOUNT PAGINA STIJL --- */
/* De account pagina moet wel de stijl hebben, maar niet de smalle breedte */
body .um-account {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    margin-bottom: 40px;
}

/* --- 3. ALLE VELDEN (Universeel) --- */
/* Dit geldt voor alle formulieren tegelijk */
body .um-field input[type="text"],
body .um-field input[type="password"],
body .um-field input[type="email"],
body .um-field input[type="tel"],
body .um-field input[type="number"] {
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    height: 48px;
    padding: 0 15px;
    font-size: 15px;
    color: #333;
    box-shadow: none;
    transition: all 0.3s ease;
}

/* Focus effect op velden */
body .um-field input:focus {
    background-color: #ffffff;
    border-color: #222222; /* Kleur van rand bij klikken */
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

/* --- 4. KNOPPEN (Universeel) --- */
/* De hoofdknop (Inloggen, Resetten, Opslaan) */
body .um .um-button {
    background-color: #222222; /* JOUW HOOFDKLEUR */
    color: #ffffff;
    border-radius: 8px;
    height: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s ease;
    opacity: 1;
}

/* Hover effect op knoppen */
body .um .um-button:hover {
    background-color: #444444; /* Iets lichter bij hover */
    transform: translateY(-2px); /* Klein sprongetje */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* De 'Secundaire' knop (vaak Annuleren of Registreren knop) */
body .um .um-button.um-alt {
    background-color: #f0f0f0;
    color: #333333;
}

body .um .um-button.um-alt:hover {
    background-color: #e0e0e0;
}

/* --- 5. LABELS & TEKST --- */
body .um-field-label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

/* Linkjes (Wachtwoord vergeten etc.) */
body .um-col-alt a, 
body .um-misc-ul a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
}

body .um-col-alt a:hover, 
body .um-misc-ul a:hover {
    color: #000000;
    text-decoration: underline;
}

/* Foutmeldingen (Rood) iets mooier maken */
body .um-field-error {
    background: #fff0f0;
    color: #d63031;
    border: 1px solid #ffcccc;
    border-radius: 6px;
    padding: 10px;
    margin-top: 5px;
}/* End custom CSS */