html {
    background-color: var(--gray-95);
}

.logoid {
    width: 5rem;
    max-height: 2rem;
    margin-bottom: min(32px, 2vh);
    margin-left: min(8px, 3vw);
  }

.password-strength {
    margin-top: -1.4rem;
    margin-bottom: 1rem;
}

.strength-bar {
    height: 0.4rem;
    width: 0;
    transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
}

.strength-bar.none {
    width: 0;
}

.strength-bar.very-bad {
    width: 20%;
    background-color: var(--red-dark);
}

.strength-bar.bad {
    width: 40%;
    background-color: var(--red);
}

.strength-bar.fair {
    width: 60%;
    background-color: var(--yellow);
}

.strength-bar.good {
    width: 80%;
    background-color: var(--green);
}

.strength-bar.best {
    width: 100%;
    background-color: var(--green-dark);
}

.check {
    width: 1.6rem;
    fill: var(--green);
}

.input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.input-wrapper input {
    padding-right: 2.8rem;
}

.input-wrapper button {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 0;
    right: 0;
    height: 2.75rem;
    width: 2.75rem;
    padding: .5rem;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.icon {
    height: 2rem;
    width: 2rem;
}