registration-username-multimethod-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  transition: all ease 300ms;
}

.registration-username-multimethod-form {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* gap: 14px; */
  gap: 7px;
}

.registration-username-multimethod-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.registration-username-multimethod-input-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.registration-username-multimethod-input {
  outline: 0;
  width: 100%;
  padding-right: 40px;
}

.registration-username-multimethod-input-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: #444444;
  padding: 2px;
  height: 32px;
  width: 32px;
  position: absolute;
  right: 0;
}

.registration-username-multimethod-input-toggle svg-img svg {
  position: absolute;
  height: 12px;
}

.registration-username-multimethod-input + .registration-username-multimethod-input-toggle svg-img svg {
  opacity: 0;
}

.registration-username-multimethod-input[type='password']
  + .registration-username-multimethod-input-toggle
  svg-img[data-type='password']
  svg {
  opacity: 1;
}

.registration-username-multimethod-input[type='text']
  + .registration-username-multimethod-input-toggle
  svg-img[data-type='text']
  svg {
  opacity: 1;
}

.registration-username-multimethod-username,
.registration-username-multimethod-issue,
.registration-username-multimethod-label {
  display: block;
  margin-top: 0px;
  margin-left: 2px;
  font-size: 12px;
  transition: all ease 600ms;
}

.registration-username-multimethod-username {
  font-size: 14px;
  text-align: center;
  margin-bottom: 1rem;
}

.registration-username-multimethod-label {
  font-size: 12px;
  font-weight: 500;
}

.registration-username-multimethod-issue {
  color: crimson;
}

.registration-username-multimethod-issue:empty {
  opacity: 0;
  height: 0;
  filter: blur(4px);
}

.registration-username-multimethod-options,
#container-passphrase {
  position: relative;
  display: flex;
  gap: 3px;
  max-height: 500px;
  transition: all ease 300ms;
}

.registration-username-multimethod-options[available='false']::after {
  content: 'No Registration Methods Available';
  text-align: center;
  margin: auto;
  color: crimson;
}

@media (max-width: 365px) {
  .registration-username-multimethod-options {
    flex-direction: column;
  }
}

.registration-username-multimethod-options input {
  display: none;
}

.registration-username-multimethod-option {
  position: relative;
  background: none;
  font-size: 14px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  gap: 12px;
  border: 1.5px solid #cccccc;
  color: #666666;
  border-radius: 2px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: all ease 300ms;
  cursor: pointer;
  border-radius: 3px;
  outline-color: var(--accent);
}

@media (max-width: 365px) {
  .registration-username-multimethod-option {
    justify-content: flex-start;
  }
}

.registration-username-multimethod-option:hover {
  background: rgba(15, 15, 15, 0.05);
}

.registration-username-multimethod-option:not(:hover) {
  background: rgba(15, 15, 15, 0);
}

.registration-username-multimethod-option[method='credential'] svg {
  transition: all ease 300ms;
  color: rgba(220, 20, 60, 0.5);
}

.registration-username-multimethod-option[method='credential']:hover svg {
  color: rgba(220, 20, 60, 0.8);
}

.registration-username-multimethod-option-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.registration-username-multimethod-option-icon img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: auto;
}

.registration-username-multimethod-option-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.02em;
}

.registration-username-multimethod-stepBack {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #666666;
  margin-top: 4px;
  cursor: pointer;
  background: none;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
  width: fit-content;
}

.registration-username-multimethod-stepBack svg {
  transform: scale(-1);
  height: 8px;
}

registration-username-multimethod-step *[hidden='true'] {
  display: none !important;
}

registration-username-multimethod-step [type='submit'] {
  margin-top: 0.25rem;
}

registration-username-multimethod-step *[ready='false'] {
  position: relative;
  display: flex;
  gap: 3px;
  max-height: 500px;
  transition: all ease 300ms;
}

registration-username-multimethod-step *[ready]:not([ready='true']) {
  opacity: 0;
  filter: blur(4px);
  pointer-events: none;
}
