#password-strength-meter{
    display: inline-flex;
    gap: 4px;
    width: 100%;
}
.password-strength-meter-unit{
    width: 25%;
    height: 5px;
    border-radius: 8px;
    background-color: var(--color-greys-4);
    display: inline-block;
}
.password-password-strength-1{
    background-color: var(--color-accents-reds-2);
}
.password-password-strength-2{
    background-color: var(--color-accents-reds-4);
}
.password-password-strength-3{
    background-color: var(--color-accents-yellows-3);
}
.password-password-strength-4{
    background-color: var(--color-accents-greens-4);

}
.password-password-strength-5{
    background-color: var(--color-accents-greens-2);
}
.input-container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    gap: 8px;
}

.input-container input {
    padding: 8px 16px;
    border: 1px solid;
    border-radius: 4px;
    width: 100%;
}


.container > div {
    display: flex;
    justify-content: center;
    width: 100%;
}
.panel {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    /* background-color: var(--color-greys-5); */
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 4px;
    width: 500px;
    padding: 12px 24px;
    padding-bottom: 24px;
    min-height: 350px;
}
.panel > div {
    width: 100%;
}
.strenth-container {
    height: 20px;
}
.input-container label {
    position: relative;
}

.input-container label i {
    position: absolute;
    right: 7px;
    bottom: 13px;
    cursor: pointer;
    opacity: 0.6;
}
label i:hover {
    opacity: 1;
}
#alert-main {
    color: var(--color-accents-reds-3);
    border: 1px solid var(--color-accents-reds-3);
    border-radius: 4px;
    width: 100%;
    padding: 8px;
    
}
#alert-main > div {
    display: inline-flex;
}
#alert-main > div > * {
    margin-right: 4px;
    margin-bottom: 0px;
}
.confirm-btn {
    margin-top: 10px;
}
.btn1 {
    /* position: relative; */
    margin-top: 10px;
    padding: 8px 12px;
    background-color: var(--color-primary-1);
    color: white;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
}
.btn1:hover {
    color: white;
    background-color: #005ef5c7;
}
.center-element {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%,-50%);
    background-color: transparent;
    font-size: 20px;
}
.btn-container {
    position: relative;
}
.hidden-text {
    color: transparent;
}
.reset-container {
    display: flex;
    flex-direction: column;
}
.confirmed {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.confirmed i {
    font-size: 60px;
    color: var(--color-accents-greens-1);
    margin-bottom: 6px;
}
.feature-unavailable {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}