@charset "UTF-8";
.sstlp-account-navigation {
  padding-bottom: 0.6rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.sstlp-account-navigation ul {
  list-style: none;
  padding: 0;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  list-style: none;
  margin: 0;
  padding-left: 0;
  gap: clamp(1rem, 0.615rem + 1.538vw, 2rem);
}

.sstlp-notice {
  font-weight: bold;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  border: 1px solid #999;
}
.sstlp-notice.success:before {
  content: "✓";
  margin-right: 0.5rem;
  color: #46b450;
  font-weight: bold;
}
.sstlp-notice.error:before {
  content: "✖";
  margin-right: 0.5rem;
  color: #dc3545;
  font-weight: bold;
}

.sstlp-form .link-lost-password,
.sstlp-form .link-return-login {
  margin-top: 2rem;
}
.sstlp-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.sstlp-form input[type=text],
.sstlp-form input[type=password],
.sstlp-form input[type=search],
.sstlp-form input[type=email],
.sstlp-form textarea,
.sstlp-form select {
  width: 100%;
}

.password-strength-requirements {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}
.password-strength-requirements.visible {
  max-height: 500px;
  /* Adjust to fit content */
  opacity: 1;
}
.password-strength-requirements * {
  font-size: 85%;
}
.password-strength-requirements ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
  font-size: 0.9em;
  color: #666;
}
.password-strength-requirements li {
  margin-bottom: 5px;
  transition: color 0.3s ease;
}
.password-strength-requirements li.valid {
  color: green;
}
.password-strength-requirements li.invalid {
  color: red;
}
.password-strength-requirements li::before {
  content: "✖";
  margin-right: 8px;
}
.password-strength-requirements li.valid::before {
  content: "✔";
  color: green;
}

/* Password Toggle Icon */
.sstlp-password-wrap {
  position: relative;
  display: block;
}

.sstlp-password-toggle-icon {
  position: absolute;
  top: 59%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-style: normal;
}
.sstlp-password-toggle-icon svg {
  width: auto;
  height: 1.5em;
  fill: #999999;
}

/* Turnstile Widget Styling */
.cf-turnstile {
  margin: 1rem 0;
  display: flex;
  justify-content: start;
}

.sstlp-form-row.form-row-wide:has(.cf-turnstile) {
  margin-bottom: 1.5rem;
}