.password-strength {
    margin-top: 16px;
}

    .password-strength .password-strength-bar {
        width: 100%;
        height: 6px;
        background-color: #dee2e6;
        border-radius: 3px;
        overflow: hidden;
    }

        .password-strength .password-strength-bar .password-strength-fill {
            height: 100%;
            transition: width 0.3s ease, background-color 0.3s ease;
            border-radius: 3px;
        }

    .password-strength .password-strength-text {
        margin-top: 4px;
        font-size: 90%;
    }

    .password-strength.weak .password-strength-fill {
        width: 33%;
        background-color: #dc3545;
    }

    .password-strength.medium .password-strength-fill {
        width: 66%;
        background-color: #ffc107;
    }

    .password-strength.strong .password-strength-fill {
        width: 100%;
        background-color: #198754;
    }

/* Requirements Checklist. */
.password-checklist {
    margin-top: 8px;
}

    .password-checklist .requirement {
        display: flex;
        align-items: center;
        margin-bottom: 4px;
        font-size: 0.875rem;
    }

        .password-checklist .requirement .requirement-icon {
            margin-right: 8px;
            font-weight: bold;
            width: 16px;
            text-align: center;
        }

        .password-checklist .requirement .requirement-text {
            color: #6c757d;
        }
