﻿.password-strength {
    margin-top: 8px;
    font-size: 12px;
    position: absolute;
    right:5px;
}

    .password-strength span {
        display: inline-block;
        width: 20px;
        height: 4px;
        margin-right: 2px;
        background-color: #ddd;
        transition: background-color 0.3s ease-in-out;
    }

    .password-strength .weak {
        background-color: #dc3545;
    }

    .password-strength .medium {
        background-color: #ffc107;
    }

    .password-strength .strong {
        background-color: #28a745;
    }
    .password-strength.mt-1.mr-right {
        right: 0;
    }