﻿#passwordRequirement {
    display: none;
    border: 1px solid #cce5ff;
    background-color: #E6F8F6;
    padding: 15px;
    margin-top: 5px;
    border-radius: 6px;
    font-family: 'Segoe UI', sans-serif;
}

    #passwordRequirement ul {
        list-style: none;
        padding: 0;
        margin: 0 0 0 29px;
    }

#passwordRequirement li {
    font-size: 12px;
    font-weight: 400;
    color: red;
    margin-bottom: 5px;
    padding-left: 25px; 
    position: relative; 

}
#passwordRequirementHeader {
    font-weight: 400;
    margin-top: -20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #007bff;
}

    #passwordRequirementHeader i {
        margin-right: 16px;
        color: #007bff;
    }

#passwordRequirement li::before {
    content: '\2718';
    color: red;
    font-weight: 400;
    position: absolute;
    left: 0;
    top: 0;
}

#passwordRequirement li.valid {
    color: #110045;
}

    #passwordRequirement li.valid::before {
        content: '\2714';
        color: #110045;
        font-weight: 400;
    }
