﻿.password-eye i {
    position: absolute;
    right: 0;
    margin: auto;
    cursor: pointer;
    top: 5px;
    color: gray;
}
.password-checklist {
    padding: 20px 30px;
    background: rgba(30, 191, 84, 1);
    border-radius: 10px;
    position: absolute;
    width: 100%;
    top: calc(100% + 10px);
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: 0.5s ease;
    width: 320px;
}
#newPasswordError {
    display: none;
    font-size: 12px;
}
.checklist {
    list-style: none;
    padding: 0;
}
.checklist .list-item {
    padding-left: 30px;
    color: white;
}
.checklist .list-item::before {
    content: '\f00d';
    font-family: FontAwesome;
    display: inline-block;
    margin: 8px 0;
    margin-left: 0px;
    margin-left: -30px;
    width: 20px;
    font-size: 12px;
}
.checklist .list-item.checked::before {
    content: '\f00c';
    color: #2F9652;
}
.checklist .list-item.checked {
    color: #2F9652;
}
#register-page-password:focus ~ .password-checklist {
    opacity: 1;
    transform: translateY(0);
}
.password-eye input {
    width: 100%;
    padding-right: 28px !important;
}
.password-eye {
    position: relative;
}