.elementor-2295 .elementor-element.elementor-element-6c6a04be{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-3d815a6a *//* =========================================
   Replace "Keep me signed in" text
   with "Hou my in-geteken" in soft grey
========================================= */
.um-field-checkbox-option {
  font-size: 14px; /* adjust as needed */
  position: relative;
  display: inline-block;
  visibility: hidden; /* hide original text completely */
}

.um-field-checkbox-option::after {
  content: "Hou my in-geteken";
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  color: #888; /* soft grey color */
  font-weight: normal;
}

/* =========================================
   Replace and center "Forgot your password?"
   with "Wagwoord vergeet?" in soft grey
========================================= */
a.um-link-alt {
  display: block;             /* allows centering with margin auto */
  max-width: 300px;           /* controls width */
  margin: 12px auto 0;        /* centers horizontally and adds spacing */
  text-align: center;         /* centers pseudo-text inside */
  position: relative;
  visibility: hidden;         /* hides original English text */
  padding: 4px 0;             /* optional: gives clickable height */
}

a.um-link-alt::after {
  content: "Wagwoord vergeet?";
  visibility: visible;
  display: inline-block;      /* aligns properly with text-align */
  color: #888;                /* soft grey color */
  text-decoration: underline;
  font-weight: normal;
  transition: color 150ms ease;
  cursor: pointer;            /* keeps link interactive */
  width: 100%;
  box-sizing: border-box;
}

a.um-link-alt:hover::after {
  color: #666; /* darker grey on hover */
}/* End custom CSS */