/*
  Purpose: Hide the password strength indicator UI on the customer account create form.
  Notes:
  - This targets both Magento's default data-role attributes and the specific IDs used by some templates.
  - Scoped conservatively to the customer create form context where possible, but safe globally as classes/IDs are specific.
*/

/* Magento default selectors for the password strength meter */
[data-role="password-strength-meter"],
[data-role="password-strength-meter-label"] {
  display: none !important;
}

/* Common ID-based selectors sometimes used in templates */
#password-strength-meter-container,
#password-strength-meter-label {
  display: none !important;
}

/* If Hyvä renders meter within the register form wrapper */
.account .form.create .password-strength,
.customer-account-create .password-strength {
  display: none !important;
}
