.password-input-box {
    position: relative;
    width: 100%;
    height: 40px;
}

.password-input {
    width: 100%;
    height: 100%;
    background: #fff;
    border: none;
    padding: 5px 15px;
    outline: none;
    border-radius: 5px;
    color: black;
    padding-right: 45px;
}

.password-input::placeholder {
    color: black;
}

.show-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: black;
}

.password-checklist {
    position: absolute;
    top: calc(100% + 10px);
    width: 100%;
    padding: 20px 30px;
    background: rgb(224, 224, 224);
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: 0.5s ease;
}

.password-input:focus~.password-checklist {
    opacity: 1;
    transform: translateY(0);
}

.checklist-title {
    font-size: 15px;
    color: black;
    margin-bottom: 10px;
}

.checklist {
    list-style: none;
}

.list-item {
    padding-left: 30px;
    color: black;
    font-size: 14px;
}

.list-item::before {
    content: "\f00d";
    font-family: FontAwesome;
    display: inline-block;
    margin: 8px 0;
    margin-left: -30px;
    width: 20px;
    font-size: 12px;
    color: rgb(255, 0, 0);
}

.list-item.checked {
    opacity: 1;
}

.list-item.checked::before {
    content: "\f00c";
    color: rgb(0, 170, 0);
    font-weight: bold;
}