.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  font-size: 2em;
  color: #666;
}

.password-input-wrapper input {
  width: 100%;
  padding-right: 35px; 
}

.password-requirements {
  font-size: 1.3em;
}

.requirements-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5em;
  font-size: 1em;
}

.requirements-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.3em;
  color: #666;
}

.requirements-list li i {
  margin-right: 0.5em;
  font-size: 1.2em;
}

.requirements-list li.valid {
  color: #2e7d32;
}

.requirements-list li.valid i {
  color: #2e7d32;
}

.strength-bar {
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
  margin-bottom: 0.5em;
}

.strength-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.strength-text {
  font-size: 1.3em;
  margin: 0;
}

/* Strength levels */
.strength-weak .strength-bar-fill {
  width: 25%;
  background-color: var(--error-text-color);
}

.strength-medium .strength-bar-fill {
  width: 50%;
  background-color: #ffd740;
}

.strength-strong .strength-bar-fill {
  width: 75%;
  background-color: #69f0ae;
}

.strength-very-strong .strength-bar-fill {
  width: 100%;
  background-color: #00c853;
}

.password-match-indicator {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: #4CAF50;
  font-size: 1.3em;
}

.password-match-indicator.visible {
  display: flex;
}

.password-match-indicator.error {
  color: var(--error-text-color);
}

.match-icon {
  font-size: 1.5em;
}

.password-input-wrapper {
  position: relative;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.password-input-wrapper.match {
  border-color: #2e7d32;
}

.password-input-wrapper.mismatch {
  border-color: var(--error-text-color);
}

/* AVISO PRIVACIDAD  */
.terms-card {
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1em;
}

.terms-card .primary-heading {
  text-align: center;
  color: black;
  padding-top: 2em;
}

.paragraph {
  color: black;
  padding: 1em;
  font-size: 1em;
  line-height: 1.3em;
  text-align: center;
}
.bold {
    font-weight: 900;
    /* text-align: left; */
}
.paragraph a {
  color: slategray;
  /* font-size: 0.8em; */
}


.button--terms {
  position: relative;
  left: 31em;
  font-size: 1rem;
  margin-top: 5em;
}

.footer-heading {
  text-align: center;
  font-family: josefin sans;
  color: white;
  margin-bottom: 50px;
  font-size: 2em;
  line-height: 35px;
}
.terms-question {
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
}
.terms-checkbox-container {
  display: flex;
  justify-content: center;
}
/* No/SÃ­ */
.no-yes-toggle {
  width: 10em;
  position: relative;
  height: 3em;
}

.no-yes-toggle label {
  border: 1px solid #cacaca;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
}

.no-yes-toggle .no,
.no-yes-toggle .yes {
  display: block;
  position: absolute;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  top: 0;
}

.no-yes-toggle .no {
  left: 0;
}

.no-yes-toggle .yes {
  right: 0;
}

.no-yes-toggle input {
  appearance: none;
  -webkit-appearance: none;
  opacity: 0.01;
  position: absolute;
  width: 1px;
  height: 1px;
}

.no-yes-toggle .status-indicator {
  background: #0f3fd0;
  width: calc(50% - 4px);
  height: calc(100% - 4px);
  top: 2px;
  position: absolute;
  left: 2px;
  transition: transform 120ms ease-out;
  border-radius: 3px;
}

.no-yes-toggle input:active:checked ~ label .no,
.no-yes-toggle input:active:not(:checked) ~ label .yes {
  top: 2px;
}

.no-yes-toggle input:focus + .status-indicator {
  background: #4878ff;
}

.no-yes-toggle input:checked + .status-indicator {
  transform: translateX(calc(100% + 4px));
}

.no-yes-toggle input:not(:checked) ~ label .no,
.no-yes-toggle input:checked ~ label .yes {
  color: #fff;

}
/* Fin no/si */