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

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

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

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

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

.recover-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;
}

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

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

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

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

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

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

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

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

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

.recover-username-multimethod-options,
.recover-username-multimethod-options-group,
#container-code {
  position: relative;
  display: flex;
  gap: 4px;
  transition: all ease 300ms;
}

.recover-username-multimethod-options {
  max-height: 500px;
  flex-direction: column;
}

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

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

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

.recover-username-multimethod-option,
.recover-username-multimethod-code {
  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) {
  .recover-username-multimethod-option,
  .recover-username-multimethod-code {
    justify-content: flex-start;
  }
}

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

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

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

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

.recover-username-multimethod-option[method='verification'] {
  width: 100%;
  background: var(--text);
  color: var(--background);
  border: none;
}

.recover-username-multimethod-option[method='code'] {
  width: 100%;
  background: var(--text);
  color: var(--background);
  border: none;
}

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

.recover-username-multimethod-option-icon svg,
.recover-username-multimethod-option-icon img,
.recover-username-multimethod-code-icon svg,
.recover-username-multimethod-code-icon img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: auto;
}

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

.recover-username-multimethod-code-resend {
  font-size: 13px;
  padding: 6px 8px;
  background: none;
  border-radius: 100vmax;
  color: var(--background);
  background: var(--text);
}

.recover-username-multimethod-code-resend:disabled {
  color: var(--text);
  background: rgba(127, 127, 127, 0.1);
}

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

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

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

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