.password-validation-form-wrapper {
    max-width: 800px;
    padding: 20px;
    box-sizing: border-box;
    font-size: var(--font-size-small);
}

.password-validation-badge {
    min-width: 18px;
    min-height: 18px;
    padding: 1px;
    margin-right: 6px;
    background-size: cover;
    background-repeat: no-repeat;
    stroke: transparent;
    stroke-width: 0;
    border: none !important;
    outline: none !important;
    transition: all .2s cubic-bezier(1, -0.03, .61, .96);
}

.passwordValidationBadgeWrapper {
    width: 100%;
    box-sizing: border-box;
    justify-content: start;
    margin-bottom: 10px;

}

.passwordValidationBadgeRow {
    justify-content: start;
    align-content: start;
    width: 100%;
    margin-bottom: 10px;
}

.password-validation-badge-ok {
    background-image: url('../img/validation-badge-ok.svg');
}

.password-validation-badge-error {
    background-image: url('../img/validation-badge-error.svg');
}

.passwordValidationFormText {
    font-size: var(--font-size-base);
    margin-bottom: 20px;
}

.newPasswordFormBtn {
    max-width: 50%;
    min-width: 40%;
}

.eye-icon {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    stroke: transparent;
    stroke-width: 0;
    border: none !important;
    outline: none !important;
    transition: all .2s cubic-bezier(1, -0.03, .61, .96);
    cursor: pointer;
}

.eye-icon-open {
    background-image: url('../img/eye.svg');
}

.eye-icon-closed {
    background-image: url('../img/eye-closed.svg');
}