*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.password-wrap {
    display: flex;
    align-items: center;
    column-gap: 30px;
    /* justify-content: center; */
}
.password {
    width: 100%;
}
.input {
    padding: 2px 0 2px 6px;
    height: 35px;
    border-radius: 5px;
    outline: none;
    border: 1px solid;
    font-size: 14px;
}
#tool-tab {
    border: 1px solid;
    padding: 15px;
    border-radius: 5px;
    display: none;
    position: absolute;
    right: -440px;
    background-color: #f6f6f6;
    color: black;
}

.left-arrow-img-box {
    width: 30px;
    height: 30px;
}
.left-arrow-img-box > img {
    width: 100%;
}
.tooltip-ul {
    position: relative;
    padding-left: 20px;
}
.tooltip-ul::before {
    content: "";
    background: url("/img/icons/Layer 2.svg") no-repeat center/contain;
    width: 20px;
    height: 30px;
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 0;
}
.list {
    list-style: none;
    position: relative;
}
.invalid {
    color: red;
}
.valid {
    color: green;
}
.list::before {
    content: "";
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid;
    background-color: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -23px;
    color: #797979;
}
.list.valid::after {
    content: "";
    background: url("/img/icons/tick_1.svg") no-repeat ;
    position: absolute;
    width: 15px;
    height: 17px;
    left: -21px;
    top: 3px;
}

