.password-correct::after {
    content: url('../images/Eo_circle_green_checkmark.svg'); /* Replace with the actual path to your image */
    display: inline-block;
    width: 20px; /* You can adjust the size as needed */
    height: 20px;
    margin-left: 5px; /* Optional: to add some space between the text and the image */
}

.password-incorrect::after {
    content: url('../images/Eo_circle_red_letter-x.svg'); /* Replace with the actual path to your image */
    display: inline-block;
    width: 20px; /* You can adjust the size as needed */
    height: 20px;
    margin-left: 5px; /* Optional: to add some space between the text and the image */
}